Instructions to use cahlen/minkowski-spectrum-cuda with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Kernels
How to use cahlen/minkowski-spectrum-cuda with Kernels:
# !pip install kernels from kernels import get_kernel kernel = get_kernel("cahlen/minkowski-spectrum-cuda") - Notebooks
- Google Colab
- Kaggle
| PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) { | |
| m.doc() = "Minkowski Question-Mark Singularity Spectrum CUDA kernel"; | |
| m.def("compute_spectrum", &compute_spectrum, | |
| "Compute multifractal spectrum tau(q), alpha(q), f(alpha)", | |
| py::arg("A_max"), py::arg("N")); | |
| } | |