Skip to content

Commit 03c9ae3

Browse files
authored
[GPU] Removed redundant part for dump file name (#27123)
### Details: - Fixed dump file name to not have layer ID twice.
1 parent 56fe26f commit 03c9ae3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/intel_gpu/src/graph/debug_helper.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ NodeDebugHelper::NodeDebugHelper(const primitive_inst& inst)
295295
debug_config->dump_layers_dst_only == 0 && debug_config->is_layer_for_dumping(layer_name)) {
296296
std::string debug_str_for_bin_load = " Command for loading : OV_GPU_LoadDumpRawBinary=\"" + layer_name + ":";
297297
for (size_t i = 0; i < m_inst.dependencies().size(); i++) {
298-
std::string name = get_file_prefix() + layer_name + "_src" + std::to_string(i);
298+
std::string name = get_file_prefix() + "_src" + std::to_string(i);
299299
auto input_mem = m_inst.dep_memory_ptr(i);
300300
if (input_mem == nullptr) {
301301
GPU_DEBUG_COUT << " input_mem_" << i << " is nullptr. Nothing to dump." << std::endl;

0 commit comments

Comments
 (0)