cahlen/continued-fraction-spectra
Updated • 295
How to use cahlen/lyapunov-spectrum-cuda with Kernels:
# !pip install kernels
from kernels import get_kernel
kernel = get_kernel("cahlen/lyapunov-spectrum-cuda")Computes Lyapunov exponents for continued fraction digit subsets via finite-difference of transfer operator eigenvalues.
import torch
from kernels import get_kernel
kernel = get_kernel("cahlen/lyapunov-spectrum-cuda")
result = lyapunov.compute(masks, max_digit=10, chebyshev_order=40)
nvcc -O3 -arch=sm_90 -o lyapunov_spectrum lyapunov_spectrum/lyapunov_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.