Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sungeunk committed Dec 16, 2024
1 parent 1f501b5 commit 8519ee2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/intel_gpu/src/graph/debug_helper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -451,8 +451,8 @@ NetworkDebugHelper::~NetworkDebugHelper() {
};
std::string path = get_dir_path(m_network.get_config());
if (!path.empty()) {
std::ofstream ofs(path + "cldnn_program_exec_p" + get_fixed_str(prog->get_id()) + "_n" + get_fixed_str(net_id)
+ "_" + get_fixed_str(m_iter, 5) + ".graph");
std::ofstream ofs(path + "cldnn_program_exec_p" + get_fixed_str(static_cast<int>(prog->get_id())) + "_n" + get_fixed_str(static_cast<int>(net_id))
+ "_" + get_fixed_str(static_cast<int>(m_iter), 5) + ".graph");
dump_graph_init(ofs, *prog, [this](const primitive_id& id) -> std::shared_ptr<const primitive_inst> {
return m_network.get_primitive(id);
});
Expand Down

0 comments on commit 8519ee2

Please sign in to comment.