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 1e5d7e3 commit cbca922Copy full SHA for cbca922
tritonbench/utils/triton_op.py
@@ -891,6 +891,9 @@ def __post__init__(self):
891
f"Input IDs to run: {self._input_ids}",
892
)
893
894
+ def get_backend(self, bm_func_name: str):
895
+ return REGISTERED_BENCHMARKS[self.name][bm_func_name]
896
+
897
def _get_bm_func(self, bm_func_name: str):
898
fwd_fn_lambda = getattr(self, bm_func_name, None)
899
assert callable(fwd_fn_lambda), (
0 commit comments