mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-04-28 05:22:07 +00:00
14 lines
226 B
C
14 lines
226 B
C
|
// Adapted from turboderp exllama: https://github.com/turboderp/exllama
|
||
|
|
||
|
#ifndef _tuning_h
|
||
|
#define _tuning_h
|
||
|
|
||
|
struct ExLlamaTuning
|
||
|
{
|
||
|
int matmul_recons_thd;
|
||
|
bool matmul_fused_remap;
|
||
|
bool matmul_no_half2;
|
||
|
};
|
||
|
|
||
|
#endif
|