Skip to content

Commit

Permalink
jit emitter: reabase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eshoguli committed Sep 25, 2023
1 parent d708abb commit 609cac7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/intel_cpu/src/emitters/aarch64/jit_emitter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class jit_emitter : public ov::snippets::Emitter {
InferenceEngine::Precision exec_prc = InferenceEngine::Precision::FP32,
const float alpha = 0.f,
emitter_in_out_map in_out_type = emitter_in_out_map::vec_to_vec) :
Emitter(nullptr), h(host), host_isa_(host_isa), exec_prc_(exec_prc), alpha(alpha), in_out_type_(in_out_type) {
Emitter(), h(host), host_isa_(host_isa), exec_prc_(exec_prc), alpha(alpha), in_out_type_(in_out_type) {
}

jit_emitter(dnnl::impl::cpu::aarch64::jit_generator* host,
Expand All @@ -47,7 +47,7 @@ class jit_emitter : public ov::snippets::Emitter {
InferenceEngine::Precision exec_prc = InferenceEngine::Precision::FP32,
const float alpha = 0.f,
emitter_in_out_map in_out_type = emitter_in_out_map::vec_to_vec) :
Emitter(n), h(host), host_isa_(host_isa), exec_prc_(exec_prc), alpha(alpha), in_out_type_(in_out_type) {
Emitter(), h(host), host_isa_(host_isa), exec_prc_(exec_prc), alpha(alpha), in_out_type_(in_out_type) {
}

void emit_code(
Expand Down

0 comments on commit 609cac7

Please sign in to comment.