()
| 237 | |
| 238 | |
| 239 | def _get_module(): |
| 240 | global _module |
| 241 | if _module is None: |
| 242 | _module = compile_cuda(CUDA_SRC, "matmul_cuda") |
| 243 | return _module |
| 244 | |
| 245 | |
| 246 | def kernel_fn(A: torch.Tensor, B: torch.Tensor) -> torch.Tensor: |
no test coverage detected