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 b766afe commit 5eaa289Copy full SHA for 5eaa289
benchmarks/run.py
@@ -25,6 +25,9 @@
25
from typing import Any
26
from typing import Callable
27
28
+# Import tritonbench's run module which applies the async_task patch
29
+import tritonbench.run # noqa: F401
30
+
31
# Maps tritonbench op names to Helion kernel examples
32
KERNEL_MAPPINGS: dict[str, tuple[str, str, str]] = {
33
# <tritonbench_op_name>: (<tritonbench_module_path>, <helion_kernel_module_path>, <helion_kernel_function_name>)
@@ -65,6 +68,11 @@
65
68
"examples.attention",
66
69
"attention",
67
70
),
71
+ "fp8_attention": (
72
+ "tritonbench.operators.fp8_attention.operator",
73
+ "examples.fp8_attention",
74
+ "fp8_attention_tritonbench",
75
+ ),
76
}
77
78
0 commit comments