Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#0: fix. #15887

Closed
wants to merge 1 commit into from
Closed

#0: fix. #15887

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions ttnn/cpp/ttnn/operations/conv/conv2d/conv2d_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -822,10 +822,6 @@ void adjust_conv_op_config_for_auto_shard_if_necessary(
// Currently data-movement ops have too many restrictions to support shallow convs with tiled input.
conv_config.input_channels_alignment = constants::TILE_WIDTH / 2;
}

// Set act_block_h_override to min value to
// be conservative with L1 memory usage.
conv_config.act_block_h_override = constants::TILE_HEIGHT;
}

if (conv_config.act_block_w_div == 1 && conv_config.shard_layout == TensorMemoryLayout::WIDTH_SHARDED) {
Expand Down
Loading