-
Notifications
You must be signed in to change notification settings - Fork 158
Dependency Updates + Separate Reference Timing with Precisions #127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
cae39e2
a5be031
981f9c9
2d419fe
56f9b03
30d4ffd
f1c4bfe
330bc80
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -7,7 +7,7 @@ | |||||||
|
|
||||||||
| from kernelbench import eval as kernel_eval | ||||||||
| from kernelbench import utils as kernel_utils | ||||||||
| from scripts.generate_baseline_time import measure_program_time | ||||||||
| from kernelbench.timing import measure_ref_program_time | ||||||||
| from kernelbench.utils import read_file | ||||||||
| from kernelbench.kernel_static_checker import validate_kernel_static | ||||||||
|
|
||||||||
|
|
@@ -26,7 +26,7 @@ | |||||||
|
|
||||||||
| REPO_TOP_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), "..")) | ||||||||
|
|
||||||||
| cuda_version = "12.8.0" | ||||||||
| cuda_version = "13.0.0" | ||||||||
| flavor = "devel" | ||||||||
| operating_sys = "ubuntu22.04" | ||||||||
| tag = f"{cuda_version}-{flavor}-{operating_sys}" | ||||||||
|
|
@@ -38,8 +38,8 @@ | |||||||
| image = ( | ||||||||
| modal.Image.from_registry(f"nvidia/cuda:{tag}", add_python="3.10") | ||||||||
| .apt_install("git", "gcc-10", "g++-10", "clang") | ||||||||
| .uv_sync(uv_project_dir=REPO_TOP_PATH) | ||||||||
| .run_commands("git clone -b tk-v2 https://github.com/HazyResearch/ThunderKittens.git /root/ThunderKittens") | ||||||||
| .uv_sync(uv_project_dir=REPO_TOP_PATH, extras=["gpu"]) | ||||||||
| .run_commands("git clone -b main https://github.com/HazyResearch/ThunderKittens.git /root/ThunderKittens") | ||||||||
| .env({ | ||||||||
| "THUNDERKITTENS_ROOT": "/root/ThunderKittens", | ||||||||
| "PYTHONPATH": "/root:/root/src:/root/scripts" | ||||||||
|
|
@@ -223,25 +223,22 @@ def measure_program_time_modal( | |||||||
| ref_arch_src: str, | ||||||||
| num_trials: int, | ||||||||
| use_torch_compile: bool, | ||||||||
| torch_compile_backend: str, | ||||||||
| torch_compile_options: str, | ||||||||
| gpu_arch: list | ||||||||
|
||||||||
| gpu_arch: list | |
| gpu_arch: list, | |
| configs: dict, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Import of 'fetch_ref_arch_from_problem_id' is not used.