From c2f5c99b1e5c6e9e6a11e4fa3f2f3371e4e0d4c2 Mon Sep 17 00:00:00 2001 From: chen <103103266+ckl117@users.noreply.github.com> Date: Wed, 3 Sep 2025 20:46:13 +0800 Subject: [PATCH] check (#3866) --- fastdeploy/model_executor/layers/lm_head.py | 1 - 1 file changed, 1 deletion(-) diff --git a/fastdeploy/model_executor/layers/lm_head.py b/fastdeploy/model_executor/layers/lm_head.py index 32f617160..163a5ddda 100644 --- a/fastdeploy/model_executor/layers/lm_head.py +++ b/fastdeploy/model_executor/layers/lm_head.py @@ -140,5 +140,4 @@ class ParallelLMHead(nn.Layer): logits = paddle.matmul(logits.astype(self.weight.dtype), self.weight) else: logits = self.linear(logits.astype(self.linear.weight.dtype)) - print(self.linear.weight.dtype) return logits