fixed overflow read file issue

This commit is contained in:
Parastoo Ashtari 2021-09-20 17:48:58 -04:00
parent 65c161eba3
commit e49250e6c3
1 changed files with 1 additions and 1 deletions

View File

@ -1290,7 +1290,7 @@ bool DebugServices::CheckOpOverflow(std::string node_name_to_find, unsigned int
MS_LOG(INFO) << "Get real path failed for overflow_bin_path.";
return false;
}
overflow_bin_path = realpath.value();
overflow_bin_path = realpath.value() + '/';
#else
overflow_bin_path = dump_dir_ + "/rank_" + std::to_string(device_id) + "/" + net_name_ + "/" +
std::to_string(root_graph_id) + "/" + IterationString(iteration) + "/";