Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
EricLBuehler committed Jun 9, 2024
1 parent 5e5a7e2 commit 47b511f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion candle-core/tests/tensor_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1348,7 +1348,7 @@ fn pow() -> Result<()> {

#[test]
fn unfold() -> Result<()> {
let x = Tensor::arange(0i64, 3 * 2, &Device::Cpu)?.reshape((3,2))?;
let x = Tensor::arange(0i64, 3 * 2, &Device::Cpu)?.reshape((3, 2))?;
let unfolded = x.unfold(0, 2, 1)?;
dbg!(&unfolded);
assert_eq!(
Expand Down

0 comments on commit 47b511f

Please sign in to comment.