From e5ff0163ad89ad7c832e1b8a256428e2e669cdf1 Mon Sep 17 00:00:00 2001 From: ZZZJ <3056485198@qq.com> Date: Tue, 9 Dec 2025 20:05:08 +0800 Subject: [PATCH] fixes DequantizeLinear #88 --- S1/ZZZJ_#88/prompt.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/S1/ZZZJ_#88/prompt.txt b/S1/ZZZJ_#88/prompt.txt index 06438ddb..e018662d 100644 --- a/S1/ZZZJ_#88/prompt.txt +++ b/S1/ZZZJ_#88/prompt.txt @@ -17,11 +17,6 @@ class Model(nn.Module): self.zero_point = -10.0 def forward(self, x: torch.Tensor) -> torch.Tensor: - """ - x: [N] int8 - Output: [N] float32 - Formula: (x - zp) * scale - """ return (x.float() - self.zero_point) * self.scale