Skip to content

Commit

Permalink
#7083: Composite conv fix for relu called after matmul
Browse files Browse the repository at this point in the history
  • Loading branch information
tt-nshanker committed May 28, 2024
1 parent f1ef7f1 commit 353faa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ttnn/cpp/ttnn/operations/conv2d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ std::tuple<ttnn::Tensor, uint32_t, uint32_t, ttnn::Tensor, std::optional<ttnn::T
matmul_program_config,
conv_out_memory_config,
conv_config.dtype,
conv_config.activation == "" ? std::nullopt : std::optional<std::string>{conv_config.activation},
std::nullopt, // activation fused into matmul. part of the matmul config.
compute_kernel_config);
if (conv_config.deallocate_activation) {
// matmul_input.deallocate();
Expand Down

0 comments on commit 353faa4

Please sign in to comment.