Skip to content

Commit 264b7ad

Browse files
author
Github Executorch
committed
remove autogenerated portable op test for fft_r2c
We autogenerate an extra portable mode test for every op. I didn't notice and forgot to opt this op out. (also looking into simply not doing this generation anymore) Differential Revision: [D69469532](https://our.internmc.facebook.com/intern/diff/D69469532/) ghstack-source-id: 265845511 Pull Request resolved: #8375
1 parent 78752a0 commit 264b7ad

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

kernels/test/targets.bzl

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,11 @@ def make_example_generated_op_test_target():
1717
"""
1818
op_test_cpp_files = native.glob(
1919
["op_*_test.cpp"],
20-
# linear has no portable op.
21-
exclude = ["op_linear_test.cpp"],
20+
# These tests have no portable op.
21+
exclude = [
22+
"op_fft_r2c_test.cpp",
23+
"op_linear_test.cpp",
24+
],
2225
)
2326

2427
# The op name is from the beginning to the part without `_test.cpp` (:-9)

0 commit comments

Comments
 (0)