Skip to content

Commit de08ff7

Browse files
committed
Update on "[Executorch] Make apple take accelerate path for blas"
For some reason fbobjc_exported_preprocessor_flags does not seems to work. Thus taking 'select' route which seems to work. Differential Revision: [D64499608](https://our.internmc.facebook.com/intern/diff/D64499608/) [ghstack-poisoned]
2 parents 6af342c + 60c905c commit de08ff7

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)