Skip to content

Commit bf4a9f3

Browse files
mgoinmzusman
authored andcommitted
Remove print statement in DeepseekScalingRotaryEmbedding (vllm-project#11604)
1 parent 036fe73 commit bf4a9f3

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

vllm/model_executor/layers/rotary_embedding.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,6 @@ def _compute_cos_sin_cache(self) -> torch.Tensor:
668668
cos = (freqs.cos() * self.mscale)
669669
sin = (freqs.sin() * self.mscale)
670670
cache = torch.cat((cos, sin), dim=-1)
671-
print("Cache shape", cache.shape)
672671
return cache
673672

674673
def forward(

0 commit comments

Comments
 (0)