Skip to content

Commit

Permalink
x64: matmul: fix vs2022 build warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
akharito authored and vpirogov committed Apr 5, 2023
1 parent 0a33f70 commit d264ba4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpu/x64/matmul/brgemm_matmul.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ struct brgemm_matmul_t : public primitive_t {
char *result_ptr, const char *reduce_ptr, size_t size) const;

std::unique_ptr<brgemm_kernel_t> brg_kernels_[max_num_brg_kernels_matmul];
alignas(64) char brg_kernel_palettes_[max_num_brg_kernels_matmul][64];
char brg_kernel_palettes_[max_num_brg_kernels_matmul][64];
std::unique_ptr<jit_brgemm_matmul_copy_b_t> copy_B_kernel_;
std::unique_ptr<jit_brgemm_matmul_copy_a_t> copy_A_kernel_;
std::unique_ptr<cpu_accumulator_1d_t<data_type::f32>> acc_ker_f32_;
Expand Down

0 comments on commit d264ba4

Please # to comment.