File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 77# https://github.com/pypa/setuptools/discussions/2838
88from distutils import log # pylint: disable=[deprecated-module]
99
10- from setuptools import setup , Extension
10+ from setuptools import setup , Extension , find_packages
1111from setuptools .command .build_ext import build_ext as _build_ext
1212
1313import torch
@@ -112,7 +112,7 @@ def get_git_commit_hash(length=8):
112112setup (
113113 name = "triton-kernels-benchmark" ,
114114 version = "3.3.0" + get_git_commit_hash (),
115- packages = [ "triton_kernels_benchmark" ] ,
115+ packages = find_packages () ,
116116 install_requires = [
117117 "torch>=2.6" ,
118118 "pandas" ,
Original file line number Diff line number Diff line change 1919 MarkArgs ,
2020)
2121from triton_kernels_benchmark .benchmark_shapes_parser import ShapePatternParser
22- from triton_kernels_benchmark .benchmark_config_templates import CONFIGS
22+ from triton_kernels_benchmark .configs . benchmark_config_templates import CONFIGS
2323
2424
2525@dataclass
You can’t perform that action at this time.
0 commit comments