Skip to content

Commit 6de3d64

Browse files
committed
fix
1 parent d15a995 commit 6de3d64

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/tvm/contrib/cutlass/gen_conv2d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def select_op(
217217
profile_all_alignments,
218218
)
219219

220-
if find_first_valid:
220+
if not find_first_valid:
221221
self.engine.compile_all(ops, use_multiprocessing)
222222

223223
args = (

python/tvm/contrib/cutlass/gen_gemm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def select_op(
222222
profile_all_alignments=profile_all_alignments,
223223
)
224224

225-
if find_first_valid:
225+
if not find_first_valid:
226226
self.engine.compile_all(ops, use_multiprocessing)
227227

228228
for op in ops:

0 commit comments

Comments
 (0)