cahlen/continued-fraction-spectra
Updated • 295
How to use cahlen/minkowski-spectrum-cuda with Kernels:
# !pip install kernels
from kernels import get_kernel
kernel = get_kernel("cahlen/minkowski-spectrum-cuda")Computes the singularity spectrum f(alpha) of the Minkowski ?(x) function via thermodynamic formalism.
import torch
from kernels import get_kernel
kernel = get_kernel("cahlen/minkowski-spectrum-cuda")
result = minkowski.compute_tau(q_values, max_digit=50, chebyshev_order=40)
nvcc -O3 -arch=sm_90 -o minkowski_spectrum minkowski_spectrum/minkowski_spectrum.cu -lm
All computation results are open:
@misc{humphreys2026bigcompute,
author = {Humphreys, Cahlen},
title = {bigcompute.science: GPU-Accelerated Computational Mathematics},
year = {2026},
url = {https://bigcompute.science}
}
Human-AI collaborative. Not peer-reviewed. All code and data open.