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