File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 49
49
- name : Install pre-commit
50
50
run : |
51
51
python -m pip install --upgrade pip
52
- pip install pre-commit
52
+ pip install .'[dev]'
53
53
54
54
- name : Run pre-commit
55
55
run : pre-commit run --all-files
Original file line number Diff line number Diff line change @@ -243,7 +243,9 @@ def main() -> None:
243
243
tb_args , unknown_args = tb_parser .parse_known_args (tritonbench_args )
244
244
245
245
# Register the Helion kernel with tritonbench BEFORE importing the operator
246
- from tritonbench .utils .triton_op import register_benchmark
246
+ from tritonbench .utils .triton_op import ( # type: ignore[reportMissingImports]
247
+ register_benchmark ,
248
+ )
247
249
248
250
# Create the benchmark method
249
251
def create_helion_method (
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ dependencies = [
20
20
" torch>=2.7.0" ,
21
21
" typing_extensions>=4.0.0" ,
22
22
" filecheck" ,
23
+ " psutil"
23
24
]
24
25
25
26
[project .optional-dependencies ]
You can’t perform that action at this time.
0 commit comments