[Mlir-commits] [mlir] [NVGPU] Fix nvdsl examples - take 2 (PR #167321)
Vijay Kandiah
llvmlistbot at llvm.org
Thu Dec 4 11:01:41 PST 2025
================
@@ -1,4 +1,4 @@
config.unsupported = False
-if not config.enable_cuda_runner or not config.mlir_run_cuda_sm90_tests:
+if not config.enable_cuda_runner:
----------------
VijayKandiah wrote:
By removing the check for `config.mlir_run_cuda_sm90_tests`, we seem to enable these lit tests that require MLIR python bindings by default when `config.enable_cuda_runner` is enabled. Is this intended behavior? Can we add an additional check for `if not config.mlir_enable_bindings_python` so that these lit tests are skipped when MLIR py bindings are not enabled?
https://github.com/llvm/llvm-project/pull/167321
More information about the Mlir-commits
mailing list