Skip to content

Commit

Permalink
discard dbg!
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieupoumeyrolsonos authored and kali committed Aug 28, 2024
1 parent e2557ee commit bed4369
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions core/src/ops/math/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,6 @@ fn mul_eval_in_a(a: &mut Tensor, b: &Tensor) -> TractResult<bool> {
let uniform_is_possible = check_uniform_is_possible(a.shape(), b.shape());
let uniform_in_place_should_be_efficient =
trailing_unary_dims.iter().fold(1, |num_elements, it| num_elements * a.shape()[*it]) > 32;
dbg!(&uniform_is_possible);
dbg!(&uniform_in_place_should_be_efficient);
let unicast_is_possible = check_unicast_is_possible(a.shape(), b.shape());
let unicast_in_place_should_be_efficient =
leading_unary_dims.iter().fold(1, |num_elements, it| num_elements * a.shape()[*it]) > 32;
Expand Down

0 comments on commit bed4369

Please sign in to comment.