Skip to content

Commit

Permalink
for now, fix to train until we fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
alexzhang13 committed Jan 15, 2025
1 parent fc186d4 commit 285dee1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
if config["lang"] == "cu":
comp, run = run_cuda_script(
{"eval.cu": cu_eval},
{key: config[key] for key in ["reference.cuh", "submission.cuh"] if key in config},
{key: config[key] for key in ["reference.cuh", "train.cuh"] if key in config},
arch=None,
)
result = {"compile": asdict(comp), "run": asdict(run)}
else:
run = run_pytorch_script(
{
"eval.py": py_eval,
**{key: config[key] for key in ["reference.py", "submission.py"] if key in config},
**{key: config[key] for key in ["reference.py", "train.py"] if key in config},
},
main="eval.py",
arch=None,
Expand Down

0 comments on commit 285dee1

Please sign in to comment.