Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
masahi committed Jan 26, 2022
1 parent d15a995 commit 6de3d64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/tvm/contrib/cutlass/gen_conv2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def select_op(
profile_all_alignments,
)

if find_first_valid:
if not find_first_valid:
self.engine.compile_all(ops, use_multiprocessing)

args = (
Expand Down
2 changes: 1 addition & 1 deletion python/tvm/contrib/cutlass/gen_gemm.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def select_op(
profile_all_alignments=profile_all_alignments,
)

if find_first_valid:
if not find_first_valid:
self.engine.compile_all(ops, use_multiprocessing)

for op in ops:
Expand Down

0 comments on commit 6de3d64

Please sign in to comment.