File size: 5,035 Bytes
4484246 d244c50 4484246 899af88 dd299cc 4484246 | 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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | -- Kernelbot Database Queries
-- All queries are READ ONLY. Never run INSERT/UPDATE/DELETE on production.
-- Scores are execution time in seconds. Lower is better.
--------------------------------------------------------------------------------
-- LIST ALL PROBLEMS
--------------------------------------------------------------------------------
SELECT
l.id,
l.name,
l.deadline,
l.description,
array_agg(g.gpu_type) as gpu_types
FROM leaderboard.leaderboard l
LEFT JOIN leaderboard.gpu_type g ON l.id = g.leaderboard_id
GROUP BY l.id, l.name, l.deadline, l.description
ORDER BY l.id;
--------------------------------------------------------------------------------
-- PROBLEM IDS
--------------------------------------------------------------------------------
-- NVFP4: 595 (gemv), 597 (gemm), 598 (dual_gemm), 697 (modal_dual_gemm), 730 (group_gemm)
-- AMD: 398 (identity), 399 (fp8-mm), 430 (moe), 463 (mla-decode),
-- 563 (all2all), 564 (gemm-rs), 565 (ag-gemm), 763 (mxfp4-mm),
-- 764 (moe-mxfp4), 765 (mixed-mla)
-- Separate mixed-GPU export: 496 (trimul)
-- Released Helion/B200_Nebius export: 766 (causal_conv1d), 767 (fp8_quant),
-- 768 (gated_deltanet_chunk_fwd_h), 769 (gated_deltanet_chunk_fwd_o),
-- 770 (gated_deltanet_recompute_w_u)
--------------------------------------------------------------------------------
-- CHECK SUBMISSION COUNTS FOR A PROBLEM
--------------------------------------------------------------------------------
SELECT
COUNT(*) as total_submissions,
COUNT(DISTINCT user_id) as unique_users
FROM leaderboard.submission
WHERE leaderboard_id = 595; -- Replace with problem ID
--------------------------------------------------------------------------------
-- EXPORT DEDUPLICATED SUBMISSIONS WITH CODE
-- Deduplicates by (user_id, code_id), keeping the fastest score
--------------------------------------------------------------------------------
WITH ranked AS (
SELECT
s.id as submission_id,
s.leaderboard_id,
l.name as problem_name,
s.user_id,
u.user_name,
s.code_id,
s.file_name,
s.submission_time,
s.status,
r.score,
r.passed,
r.mode,
r.runner,
COALESCE(c.old_code, convert_from(c.code, 'UTF8')) as code,
ROW_NUMBER() OVER (
PARTITION BY s.leaderboard_id, s.user_id, s.code_id
ORDER BY r.score ASC NULLS LAST
) as rn
FROM leaderboard.submission s
JOIN leaderboard.leaderboard l ON s.leaderboard_id = l.id
LEFT JOIN leaderboard.user_info u ON s.user_id = u.id
LEFT JOIN leaderboard.runs r ON s.id = r.submission_id AND r.mode = 'leaderboard'
LEFT JOIN leaderboard.code_files c ON s.code_id = c.id
WHERE s.leaderboard_id IN (595, 597, 598) -- Replace with problem IDs
)
SELECT
submission_id, leaderboard_id, problem_name, user_id, user_name,
code_id, file_name, submission_time, status, score, passed, mode, runner, code
FROM ranked
WHERE rn = 1
ORDER BY problem_name, score ASC NULLS LAST;
--------------------------------------------------------------------------------
-- CHECK RUN MODES AND SCORES
--------------------------------------------------------------------------------
SELECT
r.mode,
COUNT(*) as cnt,
COUNT(r.score) as has_score,
MIN(r.score) as min_score,
MAX(r.score) as max_score
FROM leaderboard.runs r
JOIN leaderboard.submission s ON r.submission_id = s.id
WHERE s.leaderboard_id IN (595, 597, 598)
GROUP BY r.mode
ORDER BY cnt DESC;
--------------------------------------------------------------------------------
-- GET TOP N SUBMISSIONS FOR A PROBLEM
--------------------------------------------------------------------------------
SELECT
u.user_name,
r.score,
s.submission_time
FROM leaderboard.submission s
JOIN leaderboard.runs r ON s.id = r.submission_id AND r.mode = 'leaderboard'
LEFT JOIN leaderboard.user_info u ON s.user_id = u.id
WHERE s.leaderboard_id = 595 -- Replace with problem ID
AND r.passed = true
AND r.score IS NOT NULL
ORDER BY r.score ASC
LIMIT 20;
--------------------------------------------------------------------------------
-- GET USER'S SUBMISSIONS OVER TIME (progression)
--------------------------------------------------------------------------------
SELECT
s.submission_time,
r.score,
r.passed
FROM leaderboard.submission s
JOIN leaderboard.runs r ON s.id = r.submission_id AND r.mode = 'leaderboard'
JOIN leaderboard.user_info u ON s.user_id = u.id
WHERE u.user_name = 'gau.nernst' -- Replace with username
AND s.leaderboard_id = 595 -- Replace with problem ID
ORDER BY s.submission_time ASC;
--------------------------------------------------------------------------------
-- GET CODE FOR A SPECIFIC SUBMISSION
--------------------------------------------------------------------------------
SELECT
COALESCE(c.old_code, convert_from(c.code, 'UTF8')) as code
FROM leaderboard.code_files c
WHERE c.id = 79741; -- Replace with code_id
|