Skip to content

Commit

Permalink
#13070: fix SD (#13073)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjameelTT authored Sep 24, 2024
1 parent 1dbdc62 commit c4bb801
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ def time_sharded_attention(self, query, t_key, value, head_size, attn_type):
v_slice = ttnn.slice(
value,
(j, i, 0, 0),
(j, i, self.seq_len, self.key_len),
(j + 1, i + 1, self.seq_len, self.key_len),
memory_config=self.l1_interleaved_memory_config,
)
mm_slice = ttnn.matmul(
Expand Down

0 comments on commit c4bb801

Please sign in to comment.