mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-04-29 04:05:35 +00:00
* [inference] add int8 rotary embedding kernel for smoothquant (#4843) * [inference] add smoothquant llama attention (#4850) * add smoothquant llama attention * remove uselss code * remove useless code * fix import error * rename file name * [inference] add silu linear fusion for smoothquant llama mlp (#4853) * add silu linear * update skip condition * catch smoothquant cuda lib exception * prcocess exception for tests * [inference] add llama mlp for smoothquant (#4854) * add llama mlp for smoothquant * fix down out scale * remove duplicate lines * add llama mlp check * delete useless code * [inference] add smoothquant llama (#4861) * add smoothquant llama * fix attention accuracy * fix accuracy * add kv cache and save pretrained * refactor example * delete smooth * refactor code * [inference] add smooth function and delete useless code for smoothquant (#4895) * add smooth function and delete useless code * update datasets * remove duplicate import * delete useless file * refactor codes (#4902) * rafactor code * add license * add torch-int and smoothquant license
53 lines
1.5 KiB
Python
53 lines
1.5 KiB
Python
import torch
|
|
|
|
from .builder import Builder
|
|
from .utils import append_nvcc_threads
|
|
|
|
|
|
class SmoothquantBuilder(Builder):
|
|
NAME = "cu_smoothquant"
|
|
PREBUILT_IMPORT_PATH = "colossalai._C.cu_smoothquant"
|
|
|
|
def __init__(self):
|
|
super().__init__(name=SmoothquantBuilder.NAME, prebuilt_import_path=SmoothquantBuilder.PREBUILT_IMPORT_PATH)
|
|
|
|
def include_dirs(self):
|
|
ret = [self.csrc_abs_path("smoothquant"), self.get_cuda_home_include()]
|
|
return ret
|
|
|
|
def sources_files(self):
|
|
ret = [
|
|
self.csrc_abs_path(fname)
|
|
for fname in [
|
|
"smoothquant/binding.cpp",
|
|
"smoothquant/linear.cu",
|
|
]
|
|
]
|
|
return ret
|
|
|
|
def cxx_flags(self):
|
|
return ["-O3"] + self.version_dependent_macros
|
|
|
|
def nvcc_flags(self):
|
|
compute_capability = torch.cuda.get_device_capability()
|
|
cuda_arch = compute_capability[0] * 100 + compute_capability[1] * 10
|
|
|
|
extra_cuda_flags = [
|
|
"-v",
|
|
f"-DCUDA_ARCH={cuda_arch}",
|
|
"-std=c++17",
|
|
"-U__CUDA_NO_HALF_OPERATORS__",
|
|
"-U__CUDA_NO_HALF_CONVERSIONS__",
|
|
"-U__CUDA_NO_HALF2_OPERATORS__",
|
|
"-DTHRUST_IGNORE_CUB_VERSION_CHECK",
|
|
]
|
|
|
|
ret = ["-O3", "--use_fast_math"] + self.version_dependent_macros + extra_cuda_flags
|
|
return append_nvcc_threads(ret)
|
|
|
|
def builder(self):
|
|
try:
|
|
super().builder()
|
|
except:
|
|
warnings.warn("build smoothquant lib not successful")
|