File size: 1,248 Bytes
96cb0ff
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
license: mit
tags:
  - kernels
  - cuda
  - ramanujan-machine
  - continued-fractions
  - mathematical-constants
  - number-theory
datasets:
  - cahlen/ramanujan-machine-results
---

# Ramanujan Machine v2 (Asymmetric-Degree CF Search)

Searches for polynomial continued fraction formulas with asymmetric degrees. Evaluates CF candidates and matches against known mathematical constants.

## Usage

```python
import torch
from kernels import get_kernel

kernel = get_kernel("cahlen/ramanujan-machine-cuda")
result = ramanujan.search(deg_a=1, deg_b=2, range_a=10, range_b=10)
```

## Compile (standalone)

```bash
nvcc -O3 -arch=sm_90 -o ramanujan_machine ramanujan/ramanujan_v2.cu -lm
```

## Results

All computation results are open:
- **Website**: [bigcompute.science](https://bigcompute.science)
- **Datasets**: [huggingface.co/cahlen](https://huggingface.co/cahlen)
- **Source**: [github.com/cahlen/idontknow](https://github.com/cahlen/idontknow)

## Citation

```bibtex
@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.*