From 0a471986a53d70dd41a59ccd1b2bf5994956ee5d Mon Sep 17 00:00:00 2001 From: Mark Saroufim Date: Fri, 3 Apr 2026 14:16:26 -0700 Subject: [PATCH] add princeton 2026 quickstart doc --- docs/princeton2026.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 docs/princeton2026.md diff --git a/docs/princeton2026.md b/docs/princeton2026.md new file mode 100644 index 0000000..d14260f --- /dev/null +++ b/docs/princeton2026.md @@ -0,0 +1,29 @@ +# Princeton 2026 Quick Start + +Use `A100` and this leaderboard: `princeton_cross_entropy`. + +```bash +# 1. Install the CLI +curl -fsSL https://raw.githubusercontent.com/gpu-mode/popcorn-cli/main/install.sh | bash + +# 2. Register once with GitHub +popcorn register github + +# 3. Join the closed leaderboard with your invite code +popcorn join + +# 4. Get the starter file +wget https://raw.githubusercontent.com/gpu-mode/reference-kernels/main/problems/princeton/cross_entropy_py/submission.py + +# 5. Run a correctness check +popcorn submit --leaderboard princeton_cross_entropy --gpu A100 --mode test submission.py + +# 6. Submit an official ranked run +popcorn submit --leaderboard princeton_cross_entropy --gpu A100 --mode leaderboard submission.py +``` + +Notes: + +- `test` checks correctness only. +- `leaderboard` is the official ranked submission. +- If registration gets stuck, run `popcorn reregister github`.