Skip to content

Commit

Permalink
#12619: Update matmul sweep timeout and core range set usage
Browse files Browse the repository at this point in the history
  • Loading branch information
bbradelTT committed Sep 13, 2024
1 parent bbfec73 commit 14f4341
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def run(
# TODO: row_wise=False and ROW_MAJOR shard orientation gives bad PCC
# TODO: COL_MAJOR shard orientation doesn't work for get_matmul_program_config
input_a_memory_config.shard_spec = ttnn.ShardSpec(
ttnn.num_cores_to_corerange_set(num_cores_height, core_grid, row_wise=True),
ttnn.CoreRangeSet(ttnn.num_cores_to_corerange_set(num_cores_height, core_grid, row_wise=True)),
(per_core_height, k_size),
ttnn.ShardOrientation.ROW_MAJOR,
False,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def run(
# TODO: row_wise=False and ROW_MAJOR shard orientation gives bad PCC
# TODO: COL_MAJOR shard orientation doesn't work for get_matmul_program_config
input_a_memory_config.shard_spec = ttnn.ShardSpec(
ttnn.num_cores_to_corerange_set(num_cores_width, core_grid, row_wise=True),
ttnn.CoreRangeSet(ttnn.num_cores_to_corerange_set(num_cores_width, core_grid, row_wise=True)),
(total_height, per_core_width),
ttnn.ShardOrientation.ROW_MAJOR,
False,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from models.utility_functions import torch_random


TIMEOUT = 5
TIMEOUT = 15

# TODO: Missing coverage for mixed precision; passed in dtype does nothing in current matmul path
parameters = {
Expand Down

0 comments on commit 14f4341

Please sign in to comment.