Skip to content

Commit

Permalink
Remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
EricLBuehler committed Mar 12, 2024
1 parent e64f8c2 commit 335ce32
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions candle-nn/src/layer_norm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,12 +137,7 @@ impl LayerNorm {
//#[cfg(not(feature = "cuda"))]
impl crate::Module for LayerNorm {
fn forward(&self, x: &Tensor) -> Result<Tensor> {
let start = SystemTime::now()
.duration_since(UNIX_EPOCH)
.expect("Time travel has occurred!")
.as_micros();
let res = self.forward_slow(x);
res
self.forward_slow(x)
}
}

Expand Down

0 comments on commit 335ce32

Please sign in to comment.