marksaroufim commited on
Commit
dd299cc
·
1 Parent(s): 899af88

Add Helion B200_Nebius competition export

Browse files
.gitignore CHANGED
@@ -1 +1,3 @@
1
  __pycache__/
 
 
 
1
  __pycache__/
2
+ .venv/
3
+ .hf.env
README.md CHANGED
@@ -6,6 +6,8 @@ configs:
6
  data_files: "successful_submissions.parquet"
7
  - config_name: amd_1_1m_competition
8
  data_files: "amd_1_1m_competition_submissions.parquet"
 
 
9
  - config_name: trimul_submissions
10
  data_files: "trimul_submissions.parquet"
11
  - config_name: nvidia_nvfp4_submissions
@@ -45,6 +47,13 @@ This dataset contains GPU kernel submissions from the KernelBot competition plat
45
 
46
  `trimul` is a separate mixed-GPU problem and is not grouped with the AMD competition exports.
47
 
 
 
 
 
 
 
 
48
  ### NVIDIA Blackwell NVFP4 Submissions
49
  | File | Size | Description |
50
  |------|------|-------------|
 
6
  data_files: "successful_submissions.parquet"
7
  - config_name: amd_1_1m_competition
8
  data_files: "amd_1_1m_competition_submissions.parquet"
9
+ - config_name: helion_b200_nebius
10
+ data_files: "helion_b200_nebius_submissions.parquet"
11
  - config_name: trimul_submissions
12
  data_files: "trimul_submissions.parquet"
13
  - config_name: nvidia_nvfp4_submissions
 
47
 
48
  `trimul` is a separate mixed-GPU problem and is not grouped with the AMD competition exports.
49
 
50
+ ### Helion B200_Nebius
51
+ | File | Size | Description |
52
+ |------|------|-------------|
53
+ | `helion_b200_nebius_submissions.parquet` | ~4 MB | Deduplicated submissions with code for `causal_conv1d` (766), `fp8_quant` (767), `gated_deltanet_chunk_fwd_h` (768), `gated_deltanet_chunk_fwd_o` (769), and `gated_deltanet_recompute_w_u` (770) |
54
+
55
+ **Measurement note:** these problems were run on `B200_Nebius`, and the measurements for this problem set are brittle. Treat leaderboard scores from this export with extra caution.
56
+
57
  ### NVIDIA Blackwell NVFP4 Submissions
58
  | File | Size | Description |
59
  |------|------|-------------|
docs.md CHANGED
@@ -47,12 +47,21 @@ The relevant tables are in the `leaderboard` schema:
47
  ### Other Completed Public Problems
48
  - **496**: trimul
49
 
 
 
 
 
 
 
 
50
  ## Additional Export Files
51
 
52
  - `amd_1_1m_competition_submissions.parquet`: deduplicated submissions with code for leaderboards 763, 764, and 765
53
  - `trimul_submissions.parquet`: deduplicated submissions with code for leaderboard 496
 
54
 
55
  `trimul` is exported separately because it spans multiple GPU families and is not part of the AMD 1.1M competition set.
 
56
 
57
  ## Run Modes
58
 
 
47
  ### Other Completed Public Problems
48
  - **496**: trimul
49
 
50
+ ### Released Helion / B200_Nebius Problems
51
+ - **766**: causal_conv1d
52
+ - **767**: fp8_quant
53
+ - **768**: gated_deltanet_chunk_fwd_h
54
+ - **769**: gated_deltanet_chunk_fwd_o
55
+ - **770**: gated_deltanet_recompute_w_u
56
+
57
  ## Additional Export Files
58
 
59
  - `amd_1_1m_competition_submissions.parquet`: deduplicated submissions with code for leaderboards 763, 764, and 765
60
  - `trimul_submissions.parquet`: deduplicated submissions with code for leaderboard 496
61
+ - `helion_b200_nebius_submissions.parquet`: deduplicated submissions with code for leaderboards 766, 767, 768, 769, and 770
62
 
63
  `trimul` is exported separately because it spans multiple GPU families and is not part of the AMD 1.1M competition set.
64
+ The Helion export is released separately because it targets `B200_Nebius`; measurements for that problem set are brittle and should be interpreted cautiously.
65
 
66
  ## Run Modes
67
 
helion_b200_nebius_submissions.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ef17fb074e94a7b2bc29e76e7be2fdd71bf9bafbf02fe9d6980e22bc5b3028e1
3
+ size 394272
leaderboards.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:eb84b0ca54c29310de4f72b47eb7661872ea4cf511e13b833b190f2aca277c14
3
- size 19598
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95d9cc00565a3ba6aad7c95ed98743f571eeb53fc7d940ed7570be3947ebb673
3
+ size 22104
queries.sql CHANGED
@@ -24,6 +24,9 @@ ORDER BY l.id;
24
  -- 563 (all2all), 564 (gemm-rs), 565 (ag-gemm), 763 (mxfp4-mm),
25
  -- 764 (moe-mxfp4), 765 (mixed-mla)
26
  -- Separate mixed-GPU export: 496 (trimul)
 
 
 
27
 
28
  --------------------------------------------------------------------------------
29
  -- CHECK SUBMISSION COUNTS FOR A PROBLEM
 
24
  -- 563 (all2all), 564 (gemm-rs), 565 (ag-gemm), 763 (mxfp4-mm),
25
  -- 764 (moe-mxfp4), 765 (mixed-mla)
26
  -- Separate mixed-GPU export: 496 (trimul)
27
+ -- Released Helion/B200_Nebius export: 766 (causal_conv1d), 767 (fp8_quant),
28
+ -- 768 (gated_deltanet_chunk_fwd_h), 769 (gated_deltanet_chunk_fwd_o),
29
+ -- 770 (gated_deltanet_recompute_w_u)
30
 
31
  --------------------------------------------------------------------------------
32
  -- CHECK SUBMISSION COUNTS FOR A PROBLEM