ColossalAI/colossalai/kernel/cuda_native/csrc/gptq/tuning.h

13 lines
220 B
C
Raw Normal View History

// Adapted from turboderp exllama: https://github.com/turboderp/exllama
#ifndef _tuning_h
#define _tuning_h
2023-09-27 02:42:11 +00:00
struct ExLlamaTuning {
int matmul_recons_thd;
bool matmul_fused_remap;
bool matmul_no_half2;
};
#endif