Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
riverlijunjie committed Jan 11, 2024
1 parent edebb4b commit e46f88b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/plugins/intel_cpu/src/compiled_model.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ CompiledModel::CompiledModel(const std::shared_ptr<ov::Model>& model,
} else {
CompiledModel::get_graph();
}
std::cout << "CompiledModel::CompiledModel - done " << std::endl;
// << "CompiledModel::CompiledModel - done " << std::endl;
}

CompiledModel::GraphGuard::Lock CompiledModel::get_graph() const {
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/intel_cpu/src/plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ Engine::compile_model(const std::shared_ptr<const ov::Model>& model, const ov::A
new_result.get_tensor().set_names(orig_result.get_tensor().get_names());
}

std::cout << "Engine::compile_model - transformations.CpuSpecificOpSet " << std::endl;
// std::cout << "Engine::compile_model - transformations.CpuSpecificOpSet " << std::endl;
// SSE runtime check is needed for some ATOM machine, which is x86-64 but w/o SSE
static Xbyak::util::Cpu cpu;
if (cpu.has(Xbyak::util::Cpu::tSSE)) {
Expand All @@ -616,7 +616,7 @@ Engine::compile_model(const std::shared_ptr<const ov::Model>& model, const ov::A
denormals_as_zero(false);
}
}
std::cout << "Engine::compile_model - make_shared<CompiledModel> " << std::endl;
// std::cout << "Engine::compile_model - make_shared<CompiledModel> " << std::endl;
return std::make_shared<CompiledModel>(cloned_model, shared_from_this(), conf, extensionManager);
}

Expand Down

0 comments on commit e46f88b

Please sign in to comment.