Skip to content

Commit

Permalink
Add prints
Browse files Browse the repository at this point in the history
  • Loading branch information
EricLBuehler committed Mar 12, 2024
1 parent 335ce32 commit 2e3e219
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions candle-nn/src/layer_norm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ impl LayerNorm {
//#[cfg(not(feature = "cuda"))]
impl crate::Module for LayerNorm {
fn forward(&self, x: &Tensor) -> Result<Tensor> {
dbg!(self.bias);
self.forward_slow(x)
}
}
Expand Down

0 comments on commit 2e3e219

Please sign in to comment.