Instructions to use cahlen/kronecker-cuda with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Kernels
How to use cahlen/kronecker-cuda with Kernels:
# !pip install kernels from kernels import get_kernel kernel = get_kernel("cahlen/kronecker-cuda") - Notebooks
- Google Colab
- Kaggle
| PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) { | |
| m.doc() = "Kronecker Coefficients (Symmetric Group) CUDA kernel"; | |
| m.def("compute_kronecker", &compute_kronecker, py::arg("ct"), py::arg("z_inv")); | |
| } | |