|
8 | 8 | "/usr/local/cuda" if "CUDA_HOME" not in os.environ else os.environ["CUDA_HOME"]
|
9 | 9 | )
|
10 | 10 | REPO_PATH = Path(os.path.abspath(__file__)).parent.parent.parent
|
11 |
| -FBGEMM_PATH = REPO_PATH.joinpath("submodules", "FBGEMM", "fbgemm_gpu") |
12 |
| -FBGEMM_CUTLASS_PATH = FBGEMM_PATH.parent.joinpath("external", "cutlass") |
| 11 | +TORCH_CUTLASS_PATH = REPO_PATH.joinpath("submodules", "cutlass") |
13 | 12 | COLFAX_CUTLASS_PATH = REPO_PATH.joinpath("submodules", "cutlass-kernels")
|
14 | 13 | COLFAX_CUTLASS_TRITONBENCH_PATH = REPO_PATH.joinpath("tools", "cutlass_kernels")
|
15 | 14 |
|
|
41 | 40 | f"-I{str(COLFAX_CUTLASS_PATH.joinpath('lib').resolve())}",
|
42 | 41 | f"-I{str(COLFAX_CUTLASS_PATH.joinpath('include').resolve())}",
|
43 | 42 | f"-I{str(COLFAX_CUTLASS_PATH.joinpath('src', 'fmha').resolve())}",
|
44 |
| - f"-I{str(FBGEMM_CUTLASS_PATH.joinpath('include').resolve())}", |
45 |
| - f"-I{str(FBGEMM_CUTLASS_PATH.joinpath('examples', 'commmon').resolve())}", |
46 |
| - f"-I{str(FBGEMM_CUTLASS_PATH.joinpath('tools', 'util', 'include').resolve())}", |
| 43 | + f"-I{str(TORCH_CUTLASS_PATH.joinpath('include').resolve())}", |
| 44 | + f"-I{str(TORCH_CUTLASS_PATH.joinpath('examples', 'commmon').resolve())}", |
| 45 | + f"-I{str(TORCH_CUTLASS_PATH.joinpath('tools', 'util', 'include').resolve())}", |
47 | 46 | f"-I{CUDA_HOME}/include",
|
48 | 47 | f"-I{str(TORCH_BASE_PATH.joinpath('include').resolve())}",
|
49 | 48 | f"-I{str(COLFAX_CUTLASS_TRITONBENCH_PATH.joinpath('include').resolve())}",
|
|
0 commit comments