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 9a989e5 commit 9687307Copy full SHA for 9687307
python/tvm/autotvm/measure/measure_methods.py
@@ -615,7 +615,7 @@ def gpu_verify_pass(**kwargs):
615
This pass will check memory usage and number of threads per block.
616
"""
617
def verify_pass(f, *_):
618
- valid = tvm.analysis.verify_gpu_code(f, kwargs)
+ valid = tvm.tir.analysis.verify_gpu_code(f, kwargs)
619
if not valid:
620
raise InstantiationError("Skipped because of invalid gpu kernel")
621
return f
0 commit comments