Skip to content

Commit

Permalink
Fix no_std
Browse files Browse the repository at this point in the history
  • Loading branch information
wingertge committed Jan 19, 2025
1 parent 1e12738 commit 6c07340
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/burn-ndarray/src/ops/deform_conv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -623,8 +623,7 @@ pub mod backward {

#[cfg(not(feature = "std"))]
run_par!(|| {
iter_par!(Zip::indexed(columns))
.for_each(|(args0, args1)| compute_for_each(args0, args1))
iter_par!(Zip::indexed(columns)).for_each(|args0, args1| compute_for_each(args0, args1))
});

let grad_in: Array1<F> = grad_in
Expand Down

0 comments on commit 6c07340

Please sign in to comment.