Skip to content

Commit 58ce131

Browse files
committed
fix example submission names
Previous use was inconsistent. Now, all examples use the '-dev' variant so that they can be easily used while testing kernelbot.
1 parent 221754f commit 58ce131

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

examples/gather/submission.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!POPCORN leaderboard identity_py-dev
1+
#!POPCORN leaderboard gather-dev
22

33
from task import input_t, output_t
44
import torch

examples/gather/wrong.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!POPCORN leaderboard identity_py-dev
1+
#!POPCORN leaderboard gather-dev
22

33
from task import input_t, output_t
44
import torch

examples/matmul_py/submission.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!POPCORN leaderboard matmul_py
1+
#!POPCORN leaderboard matmul_py-dev
22

33
from task import input_t, output_t
44

examples/softmax_py/submission.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!POPCORN leaderboard softmax_py
1+
#!POPCORN leaderboard softmax_py-dev
22

33
import torch
44
from task import input_t, output_t

examples/vectoradd_py/submission_cuda_inline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!POPCORN leaderboard vectoradd_py
1+
#!POPCORN leaderboard vectoradd_py-dev
22

33
import torch
44
from torch.utils.cpp_extension import load_inline

examples/vectoradd_py/submission_triton.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!POPCORN leaderboard vectoradd_py
1+
#!POPCORN leaderboard vectoradd_py-dev
22

33
import torch
44
import triton

0 commit comments

Comments
 (0)