Update gemma.py
This commit is contained in:
parent
e3517f0248
commit
77fea80a1b
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ class FastGemmaRotaryEmbedding(torch.nn.Module):
|
|||
self.base ** (torch.arange(0, self.dim, 2, dtype=torch.int64, device="cuda").float() / self.dim)
|
||||
)
|
||||
|
||||
t = torch.arange(position_ids.shape[1], device="cuda", dtype=torch.int64).float().unsqueeze(-1)
|
||||
t = torch.arange(position_ids.shape[1], device="cuda", dtype=torch.int64).float().unsqueeze(0)
|
||||
print(t)
|
||||
print(position_ids)
|
||||
raise False
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue