(self, input_nodes, layout, ordered_kwargs_for_cpp_kernel=(), **kwargs)
| 584 | return code_hash("-".join(parts)) |
| 585 | |
| 586 | def bind(self, input_nodes, layout, ordered_kwargs_for_cpp_kernel=(), **kwargs): |
| 587 | self.ordered_kwargs_for_cpp_kernel = ordered_kwargs_for_cpp_kernel |
| 588 | return ExternKernelCaller( |
| 589 | self, input_nodes, layout, kwargs, has_out_variant=self.has_out_variant |
| 590 | ) |
| 591 | |
| 592 | |
| 593 | class TritonTemplateCaller(ChoiceCaller): |