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 c63002e commit 856555bCopy full SHA for 856555b
utils/bazel/llvm-project-overlay/mlir/test/Conversion/BUILD.bazel
@@ -1,4 +1,5 @@
1
load("//llvm:lit_test.bzl", "lit_test")
2
+load("//llvm:targets.bzl", "llvm_targets")
3
4
licenses(["notice"])
5
@@ -15,6 +16,9 @@ package(default_visibility = ["//visibility:public"])
15
16
)
17
for src in glob(
18
include = ["**/*.mlir"],
- exclude = ["GPUToROCm/lower-rocdl-kernel-to-hsaco.mlir"],
19
+ exclude = ["GPUToROCm/lower-rocdl-kernel-to-hsaco.mlir"] + (
20
+ # MathToXeVM needs SPIRV; see MathToXeVM/lit.local.cfg
21
+ ["MathToXeVM/**"] if "SPIRV" not in llvm_targets else []
22
+ ),
23
24
]
0 commit comments