Skip to content

Commit fd4a19c

Browse files
authored
Merge pull request #1 from BaseModelAI/benchmark-readme-1.0.5
Major rework and benchmarking.
2 parents 4e42f80 + 3539394 commit fd4a19c

147 files changed

Lines changed: 761222 additions & 2892 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@
1010
*.so
1111
*.dylib
1212
*.egg-info/
13+
machine.yaml
14+
logs/

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ python scripts/benchmark_suite.py \
3434
## Release workflow
3535

3636
1. Update benchmark artifacts if the public performance story changed.
37-
2. Ensure `README.md`, the notebook, and `benchmarks/results/*.json` agree with the current implementation.
37+
2. Ensure `README.md` and `benchmarks/results/*.json` agree with the current implementation.
3838
3. Tag the release as `vX.Y.Z`.
3939
4. Push the tag to trigger `.github/workflows/release.yml`.
4040
5. Verify the uploaded GitHub release artifacts and the published PyPI files.

Cargo.lock

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "clostera"
3-
version = "1.0.4"
3+
version = "1.0.5"
44
edition = "2024"
55

66
[features]
7-
default = ["openblas-system"]
7+
default = []
88
openblas-system = ["ndarray-linalg/openblas-system"]
99
openblas-static = ["ndarray-linalg/openblas-static"]
1010
python = ["dep:numpy", "dep:pyo3", "pyo3/extension-module"]
@@ -23,6 +23,9 @@ rand_chacha = "0.9"
2323
rayon = "1.11"
2424
thiserror = "2.0"
2525

26+
[build-dependencies]
27+
pkg-config = "0.3"
28+
2629
[dev-dependencies]
2730
approx = "0.5"
2831
criterion = { version = "0.5", default-features = false, features = ["html_reports"] }

README.md

Lines changed: 345 additions & 668 deletions
Large diffs are not rendered by default.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"cpu_model": "AMD EPYC 9575F 64-Core Processor",
3+
"physical_cores": 128,
4+
"logical_cores": 256,
5+
"ram_gb": 2267,
6+
"ram_speed": "5600 MT/s",
7+
"storage": "/dev/sda 28T 18T 9.0T 67% /data",
8+
"os": "Linux 6.8.0-106-generic",
9+
"blas_backend": "OpenBLAS",
10+
"threads": {
11+
"blas": 128,
12+
"omp": 128,
13+
"rayon": 128
14+
},
15+
"cpu_governor": "performance",
16+
"turbo_boost": "enabled",
17+
"date_utc": "2026-04-25T21:01:44Z"
18+
}

0 commit comments

Comments
 (0)