mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-17 01:05:23 +08:00
Remove print statement in DeepseekScalingRotaryEmbedding (#11604)
This commit is contained in:
parent
faef77c0d6
commit
0aa38d16f5
@ -668,7 +668,6 @@ class DeepseekScalingRotaryEmbedding(RotaryEmbedding):
|
||||
cos = (freqs.cos() * self.mscale)
|
||||
sin = (freqs.sin() * self.mscale)
|
||||
cache = torch.cat((cos, sin), dim=-1)
|
||||
print("Cache shape", cache.shape)
|
||||
return cache
|
||||
|
||||
def forward(
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user