From cd6a962e66d07358047a63d4d294c3ec4df60870 Mon Sep 17 00:00:00 2001 From: Camille Zhong <44392324+Camille7777@users.noreply.github.com> Date: Wed, 27 Sep 2023 10:42:11 +0800 Subject: [PATCH] [NFC] polish code style (#4799) --- colossalai/kernel/cuda_native/csrc/gptq/tuning.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/colossalai/kernel/cuda_native/csrc/gptq/tuning.h b/colossalai/kernel/cuda_native/csrc/gptq/tuning.h index 770ca46aa..e413b8a96 100644 --- a/colossalai/kernel/cuda_native/csrc/gptq/tuning.h +++ b/colossalai/kernel/cuda_native/csrc/gptq/tuning.h @@ -3,11 +3,10 @@ #ifndef _tuning_h #define _tuning_h -struct ExLlamaTuning -{ - int matmul_recons_thd; - bool matmul_fused_remap; - bool matmul_no_half2; +struct ExLlamaTuning { + int matmul_recons_thd; + bool matmul_fused_remap; + bool matmul_no_half2; }; #endif