Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,121 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
tags:
|
| 6 |
+
- cuda
|
| 7 |
+
- gpu-acceleration
|
| 8 |
+
- code-generation
|
| 9 |
+
- benchmark
|
| 10 |
+
- llm-evaluation
|
| 11 |
+
- sample
|
| 12 |
+
size_categories:
|
| 13 |
+
- n<1K
|
| 14 |
+
configs:
|
| 15 |
+
- config_name: tasks
|
| 16 |
+
data_files: tasks.parquet
|
| 17 |
+
default: true
|
| 18 |
+
---
|
| 19 |
+
|
| 20 |
+
# AccelEval — Reviewer Sample (small split only)
|
| 21 |
+
|
| 22 |
+
A **representative sample** of [AccelEval](https://huggingface.co/datasets/Accel-Eval/AccelEval-data)
|
| 23 |
+
provided per NeurIPS 2026 dataset-hosting guidelines for reviewers
|
| 24 |
+
inspecting a >4 GB dataset.
|
| 25 |
+
|
| 26 |
+
> ⚠️ This dataset is uploaded **anonymously** to support a double-blind
|
| 27 |
+
> conference submission. Author information is intentionally omitted.
|
| 28 |
+
|
| 29 |
+
## Relationship to the full dataset
|
| 30 |
+
|
| 31 |
+
| | Sample (this repo) | Full dataset |
|
| 32 |
+
|---|---|---|
|
| 33 |
+
| Tasks | All 42 tasks | All 42 tasks |
|
| 34 |
+
| Scales | **`small` only** | `small`, `medium`, `large` |
|
| 35 |
+
| Packed size | ~30 MB | ~12 GB |
|
| 36 |
+
| Manifest | `tasks.parquet`, `tasks.csv` (full) | identical |
|
| 37 |
+
| URL | this repo | [`Accel-Eval/AccelEval-data`](https://huggingface.co/datasets/Accel-Eval/AccelEval-data) |
|
| 38 |
+
|
| 39 |
+
The two repos share an identical 42-row `tasks.parquet` (the manifest is
|
| 40 |
+
not affected by which scales ship), so reviewers can browse every task's
|
| 41 |
+
metadata, full `cpu_reference.c` source, and L1/L2/L3 `prompt_template.yaml`
|
| 42 |
+
directly here without needing the larger tarballs.
|
| 43 |
+
|
| 44 |
+
### How the sample was created
|
| 45 |
+
|
| 46 |
+
`small.tar.gz` is the unmodified `small`-scale tarball from the full
|
| 47 |
+
dataset — same SHA256, same byte layout. Specifically, every task's
|
| 48 |
+
`gen_data.py` is run with the parameters listed under `"input_sizes.small"`
|
| 49 |
+
in `tasks/<task_id>/task.json`, with the deterministic seed
|
| 50 |
+
(`seed=42`); the resulting `input.bin`, `expected_output.txt`,
|
| 51 |
+
`cpu_time_ms.txt`, and `requests.txt` files for all 42 tasks are then
|
| 52 |
+
packed under `tasks/<task_id>/data/small/...` into a single
|
| 53 |
+
gzipped tar. The same code path produces `medium.tar.gz` and
|
| 54 |
+
`large.tar.gz` in the full dataset; this sample simply omits those two
|
| 55 |
+
tarballs.
|
| 56 |
+
|
| 57 |
+
The `manifest.json` shipped here contains the SHA256 of `small.tar.gz`,
|
| 58 |
+
which matches the entry for `small.tar.gz` in the full dataset's
|
| 59 |
+
`manifest.json`.
|
| 60 |
+
|
| 61 |
+
## What's in this repo
|
| 62 |
+
|
| 63 |
+
| File | Role |
|
| 64 |
+
|---|---|
|
| 65 |
+
| `tasks.parquet` | The 42-task manifest (browseable above), 13 columns. **Includes the full `cpu_reference.c` source and the LLM `prompt_template.yaml` for every task** so the benchmark is self-contained at the metadata level. |
|
| 66 |
+
| `tasks.csv` | Same content as `tasks.parquet`, plain text. |
|
| 67 |
+
| `small.tar.gz` | All 42 tasks at the *small* scale (~30 MB packed). |
|
| 68 |
+
| `manifest.json` | SHA256 of `small.tar.gz` + per-task metadata. |
|
| 69 |
+
|
| 70 |
+
`small.tar.gz` expands to `tasks/<task_id>/data/small/{input.bin,
|
| 71 |
+
expected_output.txt, cpu_time_ms.txt, requests.txt}`.
|
| 72 |
+
|
| 73 |
+
## Quick load (manifest table)
|
| 74 |
+
|
| 75 |
+
```python
|
| 76 |
+
import pandas as pd
|
| 77 |
+
tasks = pd.read_parquet("hf://datasets/Accel-Eval/AccelEval-sample/tasks.parquet")
|
| 78 |
+
print(tasks.head())
|
| 79 |
+
```
|
| 80 |
+
|
| 81 |
+
## Pulling the small inputs
|
| 82 |
+
|
| 83 |
+
```bash
|
| 84 |
+
huggingface-cli download Accel-Eval/AccelEval-sample small.tar.gz \
|
| 85 |
+
--repo-type dataset --local-dir .
|
| 86 |
+
tar xzf small.tar.gz # populates tasks/<task>/data/small/
|
| 87 |
+
```
|
| 88 |
+
|
| 89 |
+
Or via the companion code repo's helper:
|
| 90 |
+
|
| 91 |
+
```bash
|
| 92 |
+
ACCELEVAL_HF_REPO=Accel-Eval/AccelEval-sample \
|
| 93 |
+
python3 scripts/download_data.py small
|
| 94 |
+
```
|
| 95 |
+
|
| 96 |
+
## Categories (same as the full dataset)
|
| 97 |
+
|
| 98 |
+
| Category | Count | Examples |
|
| 99 |
+
|---|---:|---|
|
| 100 |
+
| Operations research | 12 | `crew_pairing`, `network_rm_dp`, `pdlp`, `gittins_index`, ... |
|
| 101 |
+
| Graph algorithms | 7 | `bellman_ford`, `held_karp_tsp`, `gapbs_pagerank_pullgs`, ... |
|
| 102 |
+
| Spatial--temporal | 7 | `dbscan`, `dtw_distance`, `euclidean_distance_matrix`, ... |
|
| 103 |
+
| HPC reference | 7 | `hpcg_spmv_27pt`, `npb_lu_ssor_structured`, `miniWeather`, ... |
|
| 104 |
+
| Financial computing | 5 | `black_scholes`, `bonds_pricing`, `monte_carlo`, ... |
|
| 105 |
+
| Scientific simulation | 4 | `sph_cell_index`, `sph_forces`, `sph_position`, `hotspot_2d` |
|
| 106 |
+
|
| 107 |
+
The full row-by-row description is in `tasks.parquet`.
|
| 108 |
+
|
| 109 |
+
## Determinism
|
| 110 |
+
|
| 111 |
+
Every task generator uses a fixed seed (`seed=42` in `gen_data.py`); the
|
| 112 |
+
tarball in this repo is byte-reproducible from the code repo's
|
| 113 |
+
`tasks/<task>/gen_data.py`. The `manifest.json` ships SHA256 hashes so
|
| 114 |
+
an independent regeneration can be verified bit-exactly.
|
| 115 |
+
|
| 116 |
+
## License
|
| 117 |
+
|
| 118 |
+
Released under Apache-2.0. Each individual task adapts code from a
|
| 119 |
+
publicly available source (GitHub repository or published research paper);
|
| 120 |
+
the original sources retain their respective licenses, and `tasks.parquet`
|
| 121 |
+
records each source for attribution.
|