Skip to content

Commit

Permalink
Correct store emitter usage
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorDuplensky committed May 24, 2021
1 parent 6756dfc commit 2eac5e2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ struct jit_uni_roi_pooling_kernel_f32 : public jit_uni_roi_pooling_kernel, publi
this->postamble();

load_emitter->emit_data();
store_emitter->emit_data();
if (!mayiuse(avx512_core_bf16) && mayiuse(avx512_core) && store_emitter != nullptr && store_emitter->get_emu_vcvtneps2bf16() != nullptr)
store_emitter->get_emu_vcvtneps2bf16()->emit_data();
}

private:
Expand Down

0 comments on commit 2eac5e2

Please sign in to comment.