From 779033386a3680fa4f6236850bc97f135494dcf6 Mon Sep 17 00:00:00 2001
From: 游雁 <zhifu.gzf@alibaba-inc.com>
Date: 星期二, 11 六月 2024 14:22:55 +0800
Subject: [PATCH] fixbug

---
 funasr/models/llm_asr/model.py |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/funasr/models/llm_asr/model.py b/funasr/models/llm_asr/model.py
index 519918c..57da105 100644
--- a/funasr/models/llm_asr/model.py
+++ b/funasr/models/llm_asr/model.py
@@ -715,7 +715,9 @@
 
         llm_dtype = kwargs.get("llm_dtype", "fp32")
         dtype_map = {"bf16": torch.bfloat16, "fp16": torch.float16, "fp32": torch.float32}
-        with torch.cuda.amp.autocast(dtype=dtype_map[llm_dtype]):
+        with torch.cuda.amp.autocast(
+            enabled=True if llm_dtype != "fp32" else False, dtype=dtype_map[llm_dtype]
+        ):
             label = contents["assistant"][0]
             # self.llm = self.llm.to(dtype_map[llm_dtype])
             # inputs_embeds = inputs_embeds.to(dtype_map[llm_dtype])

--
Gitblit v1.9.1