Skip to content

Commit

Permalink
cpu: x64: brgemm: use range-based loop for jit_brdgmm_kernel.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Permanence-AI-Coder committed Sep 9, 2024
1 parent 4900ee1 commit 387fde8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cpu/x64/brgemm/jit_brdgmm_kernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1007,8 +1007,8 @@ void jit_brdgmm_kernel_base_t<Wmm>::brdgmm_microkernel(int m_blocks,

align(64);
L(jmp_table_base);
for (int m_i = 0; m_i < m_blocks; ++m_i) {
putL(jmp_table_labels[m_i]);
for (const auto &label : jmp_table_labels) {
putL(label);
}
}

Expand Down

0 comments on commit 387fde8

Please sign in to comment.