Skip to content

Commit

Permalink
#0: Address formatting issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
avoraTT committed Nov 5, 2024
1 parent 1b9634a commit 09fb42d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,9 @@ def run_test_rotary_embedding_llama(
inp = [x.transpose(1, 2) for x in inp]
# inp: [seq_len, batch, n_heads, head_dim]

grid = ttnn.num_cores_to_corerangeset(batch, rope_setup_decode.core_grid, row_wise=True).bounding_box().grid_size()
grid = (
ttnn.num_cores_to_corerangeset(batch, rope_setup_decode.core_grid, row_wise=True).bounding_box().grid_size()
)
input_mem_config = ttnn.create_sharded_memory_config(
shape=(1, batch, ttnn.TILE_SIZE, head_dim),
core_grid=ttnn.CoreGrid(y=grid.y, x=grid.x),
Expand Down

0 comments on commit 09fb42d

Please sign in to comment.