tuning.h 225 B

12345678910111213
  1. // Adapted from turboderp exllama: https://github.com/turboderp/exllama
  2. #ifndef _tuning_h
  3. #define _tuning_h
  4. struct ExLlamaTuning
  5. {
  6. int matmul_recons_thd;
  7. bool matmul_fused_remap;
  8. bool matmul_no_half2;
  9. };
  10. #endif