cahlen/hausdorff-dimension-spectrum
Viewer • Updated • 4 • 114
How to use cahlen/hausdorff-spectrum-cuda with Kernels:
# !pip install kernels
from kernels import get_kernel
kernel = get_kernel("cahlen/hausdorff-spectrum-cuda")Computes Hausdorff dimension dim_H(E_A) for continued fraction digit subsets A via transfer operator + Chebyshev collocation + bisection.
import torch
from kernels import get_kernel
kernel = get_kernel("cahlen/hausdorff-spectrum-cuda")
result = hausdorff.compute(masks, max_digit=10, chebyshev_order=40)
nvcc -O3 -arch=sm_90 -o hausdorff_spectrum hausdorff_spectrum/hausdorff_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.