Doa-doa's picture
Upload folder using huggingface_hub
72268ee
raw
history blame contribute delete
297 Bytes
#ifndef _tuning_h
#define _tuning_h
struct ExLlamaTuning
{
int matmul_recons_thd;
int fused_mlp_thd;
int sdp_thd;
bool matmul_fused_remap;
bool rmsnorm_no_half2;
bool rope_no_half2;
bool matmul_no_half2;
bool silu_no_half2;
bool concurrent_streams;
};
#endif