Skip to content

Commit

Permalink
Update fn name
Browse files Browse the repository at this point in the history
  • Loading branch information
EricLBuehler committed Mar 12, 2024
1 parent 9140e50 commit 58a37cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion candle-nn/src/layer_norm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
use std::time::{SystemTime, UNIX_EPOCH};

use candle::{backend::BackendStorage, cuda_backend::{cudarc::driver::{LaunchAsync, LaunchConfig}, kernel_name, CudaDType}, DType, Device, Result, Storage, Tensor, D};

Check failure on line 33 in candle-nn/src/layer_norm.rs

View workflow job for this annotation

GitHub Actions / Clippy

failed to resolve: could not find `cuda_backend` in `candle`

Check failure on line 33 in candle-nn/src/layer_norm.rs

View workflow job for this annotation

GitHub Actions / Clippy

unresolved import `candle::cuda_backend`

Check failure on line 33 in candle-nn/src/layer_norm.rs

View workflow job for this annotation

GitHub Actions / Clippy

unused imports: `Device`, `Storage`

Check failure on line 33 in candle-nn/src/layer_norm.rs

View workflow job for this annotation

GitHub Actions / Clippy

unused import: `backend::BackendStorage`

Check failure on line 33 in candle-nn/src/layer_norm.rs

View workflow job for this annotation

GitHub Actions / Check (ubuntu-latest, stable)

failed to resolve: could not find `cuda_backend` in `candle`

Check failure on line 33 in candle-nn/src/layer_norm.rs

View workflow job for this annotation

GitHub Actions / Check (ubuntu-latest, stable)

unresolved import `candle::cuda_backend`

Check warning on line 33 in candle-nn/src/layer_norm.rs

View workflow job for this annotation

GitHub Actions / Check (ubuntu-latest, stable)

unused imports: `Device`, `Storage`

Check warning on line 33 in candle-nn/src/layer_norm.rs

View workflow job for this annotation

GitHub Actions / Check (ubuntu-latest, stable)

unused import: `backend::BackendStorage`

Check failure on line 33 in candle-nn/src/layer_norm.rs

View workflow job for this annotation

GitHub Actions / Test Suite (ubuntu-latest, stable)

failed to resolve: could not find `cuda_backend` in `candle`

Check failure on line 33 in candle-nn/src/layer_norm.rs

View workflow job for this annotation

GitHub Actions / Test Suite (ubuntu-latest, stable)

unresolved import `candle::cuda_backend`

Check warning on line 33 in candle-nn/src/layer_norm.rs

View workflow job for this annotation

GitHub Actions / Test Suite (ubuntu-latest, stable)

unused imports: `Device`, `Storage`

Check warning on line 33 in candle-nn/src/layer_norm.rs

View workflow job for this annotation

GitHub Actions / Test Suite (ubuntu-latest, stable)

unused import: `backend::BackendStorage`
pub use candle_kernels as kernels;
//pub use candle_kernels as kernels;

#[derive(Debug, Clone, Copy, PartialEq)]
pub struct LayerNormConfig {
Expand Down

0 comments on commit 58a37cd

Please sign in to comment.