We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 093c03d commit a9d8a65Copy full SHA for a9d8a65
src/cpu/x64/rnn/rnn_brgemm_utils.cpp
@@ -89,7 +89,7 @@ x64::cpu_isa_t brgemm_calc_isa(
89
} else if (rnn.is_cell_dt_bf16()) {
90
return x64::avx512_core_bf16;
91
} else if (rnn.is_cell_dt_f16()) {
92
- return isa_undef;
+ return x64::avx512_core_fp16;
93
} else { // f32
94
return utils::map(true, x64::isa_undef, mayiuse(avx512_core),
95
avx512_core, mayiuse(avx2), avx2);
0 commit comments