marksaroufim commited on
Commit
4159cf6
·
unverified ·
1 Parent(s): 0d4e46f

Add Cholesky linalg submissions export

Browse files
Files changed (4) hide show
  1. README.md +1 -1
  2. docs.md +2 -1
  3. linalg_submissions.parquet +2 -2
  4. queries.sql +1 -1
README.md CHANGED
@@ -80,7 +80,7 @@ This dataset contains GPU kernel submissions from the KernelBot competition plat
80
  ### Linear Algebra Submissions
81
  | File | Size | Description |
82
  |------|------|-------------|
83
- | `linalg_submissions.parquet` | ~1.9 GB | Deduplicated submissions with code for `qr_v2` (leaderboard 774) and `eigh` (leaderboard 775) |
84
 
85
  The earlier `qr` leaderboard (773) is not included.
86
 
 
80
  ### Linear Algebra Submissions
81
  | File | Size | Description |
82
  |------|------|-------------|
83
+ | `linalg_submissions.parquet` | ~4.3 GB | Deduplicated submissions with code for `qr_v2` (leaderboard 774), `eigh` (leaderboard 775), and `cholesky` (leaderboard 776) |
84
 
85
  The earlier `qr` leaderboard (773) is not included.
86
 
docs.md CHANGED
@@ -67,6 +67,7 @@ The relevant tables are in the `leaderboard` schema:
67
  ### Linear Algebra Problems
68
  - **774**: qr_v2
69
  - **775**: eigh
 
70
 
71
  ## Additional Export Files
72
 
@@ -74,7 +75,7 @@ The relevant tables are in the `leaderboard` schema:
74
  - `trimul_submissions.parquet`: deduplicated submissions with code for leaderboard 496
75
  - `helion_b200_nebius_submissions.parquet`: deduplicated submissions with code for leaderboards 766, 767, 768, 769, and 770
76
  - `pmpp_v2_submissions.parquet`: all submissions with code for leaderboards 537, 538, 539, 540, 541, 542, 543, and 544
77
- - `linalg_submissions.parquet`: deduplicated submissions with code for leaderboards 774 (`qr_v2`) and 775 (`eigh`)
78
 
79
  `trimul` is exported separately because it spans multiple GPU families and is not part of the AMD 1.1M competition set.
80
  The Helion export is released separately because it targets `B200_Nebius`; measurements for that problem set are brittle and should be interpreted cautiously.
 
67
  ### Linear Algebra Problems
68
  - **774**: qr_v2
69
  - **775**: eigh
70
+ - **776**: cholesky
71
 
72
  ## Additional Export Files
73
 
 
75
  - `trimul_submissions.parquet`: deduplicated submissions with code for leaderboard 496
76
  - `helion_b200_nebius_submissions.parquet`: deduplicated submissions with code for leaderboards 766, 767, 768, 769, and 770
77
  - `pmpp_v2_submissions.parquet`: all submissions with code for leaderboards 537, 538, 539, 540, 541, 542, 543, and 544
78
+ - `linalg_submissions.parquet`: deduplicated submissions with code for leaderboards 774 (`qr_v2`), 775 (`eigh`), and 776 (`cholesky`)
79
 
80
  `trimul` is exported separately because it spans multiple GPU families and is not part of the AMD 1.1M competition set.
81
  The Helion export is released separately because it targets `B200_Nebius`; measurements for that problem set are brittle and should be interpreted cautiously.
linalg_submissions.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f9a65c5ce15fd9ba317dc701ab540d3a215f1be5efb91b05cbbecd016e463b10
3
- size 2088792894
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c98d183f660a300958f28dfdd74d8f53237209eed4bf5e5d1c03f8382f12c6f1
3
+ size 4657208284
queries.sql CHANGED
@@ -27,7 +27,7 @@ ORDER BY l.id;
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
- -- Linear algebra export: 774 (qr_v2), 775 (eigh)
31
 
32
  --------------------------------------------------------------------------------
33
  -- CHECK SUBMISSION COUNTS FOR A PROBLEM
 
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
+ -- Linear algebra export: 774 (qr_v2), 775 (eigh), 776 (cholesky)
31
 
32
  --------------------------------------------------------------------------------
33
  -- CHECK SUBMISSION COUNTS FOR A PROBLEM