(inputs: dict)
| 286 | return reference.matmul_ref(inputs["A"], inputs["B"]) |
| 287 | |
| 288 | def _ref_softmax(inputs: dict) -> torch.Tensor: |
| 289 | import reference |
| 290 | return reference.softmax_ref(inputs["x"]) |
| 291 | |
| 292 | def _ref_layernorm(inputs: dict) -> torch.Tensor: |
| 293 | import reference |
nothing calls this directly
no outgoing calls
no test coverage detected