--- Pybind11 Module Definition --- Exposes the 'run' function to Python, making it callable as a C++ extension.
| 61 | // --- Pybind11 Module Definition --- |
| 62 | // Exposes the 'run' function to Python, making it callable as a C++ extension. |
| 63 | PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) { |
| 64 | m.def("run", &run, "RMSNorm kernel for hidden_size=4096 (BFloat16, CUDA, B200 Optimized)"); |
| 65 | } |
nothing calls this directly
no outgoing calls
no test coverage detected