Commit 773aabdd authored by OlivierDehaene's avatar OlivierDehaene
Browse files

fix: fix triton OutOfResources import

parent 50b495f3
......@@ -90,7 +90,7 @@ class Autotuner(triton.KernelInterface):
return triton.testing.do_bench(
kernel_call, percentiles=(0.5, 0.2, 0.8), rep=40
)
except triton.compiler.OutOfResources:
except triton.OutOfResources:
return (float("inf"), float("inf"), float("inf"))
def run(self, *args, **kwargs):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment