We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7173c39 commit 4a5087fCopy full SHA for 4a5087f
python/tvm/testing/utils.py
@@ -641,7 +641,7 @@ def _compile_only_marks(self):
641
yield pytest.mark.skipif(True, reason=res)
642
else:
643
yield pytest.mark.skipif(
644
- res, reason=f"Compile-time support for {self.long_name} not present"
+ not res, reason=f"Compile-time support for {self.long_name} not present"
645
)
646
647
if self.target_kind_enabled is not None:
@@ -673,7 +673,7 @@ def _run_only_marks(self):
673
674
675
676
- res, reason=f"Run-time support for {self.long_name} not present"
+ not res, reason=f"Run-time support for {self.long_name} not present"
677
678
679
if self.target_kind_hardware is not None:
0 commit comments