Skip to content

Commit

Permalink
Remove print statement in DeepseekScalingRotaryEmbedding (vllm-projec…
Browse files Browse the repository at this point in the history
  • Loading branch information
mgoin authored and BKitor committed Dec 30, 2024
1 parent 6b8ce76 commit 3acd6a1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion vllm/model_executor/layers/rotary_embedding.py
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,6 @@ def _compute_cos_sin_cache(self) -> torch.Tensor:
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(
Expand Down

0 comments on commit 3acd6a1

Please sign in to comment.