setup.py 904 Bytes
Newer Older
jixx's avatar
init  
jixx committed
1
2
3
4
from setuptools import setup
from torch.utils.cpp_extension import BuildExtension, CUDAExtension
import torch

jixx's avatar
jixx committed
5
6
7
8
9
extra_cuda_cflags = []
extra_cflags = []
if torch.version.hip:
    extra_cflags = ["-DLEGACY_HIPBLAS_DIRECT=ON"]
    extra_cuda_cflags = ["-DLEGACY_HIPBLAS_DIRECT=ON"]
jixx's avatar
init  
jixx committed
10

jixx's avatar
jixx committed
11
12
13
extra_compile_args = {
    "cxx": extra_cflags,
    "nvcc": extra_cuda_cflags,
jixx's avatar
init  
jixx committed
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
}

setup(
    name="exllama_kernels",
    ext_modules=[
        CUDAExtension(
            name="exllama_kernels",
            sources=[
                "exllama_kernels/exllama_ext.cpp",
                "exllama_kernels/cuda_buffers.cu",
                "exllama_kernels/cuda_func/column_remap.cu",
                "exllama_kernels/cuda_func/q4_matmul.cu",
                "exllama_kernels/cuda_func/q4_matrix.cu",
            ],
            extra_compile_args=extra_compile_args,
        )
    ],
    cmdclass={"build_ext": BuildExtension},
)