cahlen/continued-fraction-spectra
Updated • 295
How to use cahlen/prime-convergents-cuda with Kernels:
# !pip install kernels
from kernels import get_kernel
kernel = get_kernel("cahlen/prime-convergents-cuda")Computes prime statistics of CF convergents using uint128 arithmetic (depth ~75). Tracks primality, doubly-prime convergents, and Erdos-Mahler bound.
import torch
from kernels import get_kernel
kernel = get_kernel("cahlen/prime-convergents-cuda")
result = prime_conv.compute(num_samples=1000000, max_depth=500, mode=0)
nvcc -O3 -arch=sm_90 -o prime_convergents prime_convergents/prime_convergents_v2.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.