Skip to content

Commit

Permalink
remove unnecessary assert
Browse files Browse the repository at this point in the history
  • Loading branch information
amakarev committed Apr 29, 2024
1 parent 59b3721 commit 94272ff
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/cpu/x64/jit_generator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ void jit_generator::transpose(const Xbyak::Reg64 &reg_src,
= vreg_traits<Xbyak::Ymm>::vlen / types::data_type_size(dt);
assert(is_valid_isa(avx2));
assert(nrows <= transpose_size && ncolumns <= transpose_size);
assert(!is_valid_isa(avx512_core)); // not-optimal

assert(dt == data_type::f32
&& "transpose utils not supported for current data type");
Expand Down

0 comments on commit 94272ff

Please sign in to comment.