mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-17 05:05:01 +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)
|
cos = (freqs.cos() * self.mscale)
|
||||||
sin = (freqs.sin() * self.mscale)
|
sin = (freqs.sin() * self.mscale)
|
||||||
cache = torch.cat((cos, sin), dim=-1)
|
cache = torch.cat((cos, sin), dim=-1)
|
||||||
print("Cache shape", cache.shape)
|
|
||||||
return cache
|
return cache
|
||||||
|
|
||||||
def forward(
|
def forward(
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user