Skip to content

Commit

Permalink
trial fix for mobile manifest issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Ruberry committed Feb 3, 2021
1 parent 2fcb3a5 commit 71b0cfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aten/src/ATen/native/cpu/BinaryOpsKernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ void mul_kernel(TensorIterator& iter) {
}

void div_true_kernel(TensorIterator& iter) {
AT_DISPATCH_FLOATING_AND_COMPLEX_TYPES_AND2(kBFloat16, kHalf, iter.common_dtype(), "div_true_cpu", [&]() {
AT_DISPATCH_FLOATING_AND_COMPLEX_TYPES_AND2(kBFloat16, kHalf, iter.common_dtype(), "div_cpu", [&]() {
cpu_kernel_vec(iter,
[](scalar_t a, scalar_t b) __ubsan_ignore_float_divide_by_zero__ -> scalar_t {
return a / b;
Expand Down

0 comments on commit 71b0cfe

Please sign in to comment.