From b34d799da1c72a5d5506466856d157071bc35a6c Mon Sep 17 00:00:00 2001 From: mpj1234 <78143172+mpj1234@users.noreply.github.com> Date: Thu, 28 Nov 2024 14:15:52 +0800 Subject: [PATCH] Use the configuration of FP16 by default. (#1601) --- yolo11/include/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yolo11/include/config.h b/yolo11/include/config.h index 705a321..7b30a67 100644 --- a/yolo11/include/config.h +++ b/yolo11/include/config.h @@ -1,6 +1,6 @@ -//#define USE_FP16 +#define USE_FP16 // #define USE_FP32 -#define USE_INT8 +// #define USE_INT8 const static char* kInputTensorName = "images"; const static char* kOutputTensorName = "output";