Skip to content

Commit

Permalink
gpu: jit: conv: reduce default mad blocking usage
Browse files Browse the repository at this point in the history
  • Loading branch information
kealan-barbieri authored and vpirogov committed May 11, 2023
1 parent cb91693 commit ff209f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gpu/jit/conv/config_plan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2080,7 +2080,7 @@ class plan_builder_t {
vec_size, a_layout, b_layout, 1, -1)) {
m_blk = vec_size;
c_blk_layout = c_blk_layout.add_outer_block(1, vec_size);
} else if (cfg_.prb().g > 1
} else if (cfg_.prb().g > 1 && cfg_.prb().g < 16
&& (a_layout.blocks()[0].block
* a_layout.blocks()[1].block)
% vec_size
Expand Down

0 comments on commit ff209f9

Please sign in to comment.