Skip to content

Commit 5032d9b

Browse files
committed
Update base for Update on "[Executorch] optimized sigmoid"
basically use exp approximation using sleef instead of std::exp Differential Revision: [D64156864](https://our.internmc.facebook.com/intern/diff/D64156864/) [ghstack-poisoned]
1 parent eceb120 commit 5032d9b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

kernels/test/op_mul_test.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,7 @@ class OpMulOutTest : public OperatorTest {
237237
EXPECT_TENSOR_CLOSE(op_mul_out(a, b, out), expected);
238238
EXPECT_TENSOR_CLOSE(op_mul_out(b, a, out), expected);
239239

240-
a =
241-
tf_a.make({2, 2, 3}, /*data=*/{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12});
240+
a = tf_a.make({2, 2, 3}, /*data=*/{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12});
242241
b = tf_a.make({2, 2, 1}, /*data=*/{2, 3, 4, 5});
243242

244243
// Destination for output of mul.

0 commit comments

Comments
 (0)