Unverified Commit d8b2dd79 authored by Adam Procter's avatar Adam Procter Committed by GitHub

Merge pull request #2296 from NervanaSystems/krovatkin/dex_msgs

Add a space in one of the diag msgs
parents b5446d87 8a23a1ce
...@@ -1982,10 +1982,10 @@ void runtime::cpu::CPU_ExternalFunction::build() ...@@ -1982,10 +1982,10 @@ void runtime::cpu::CPU_ExternalFunction::build()
file_util::path_join(s_debug_dir, m_function_name + "_debug.txt"); file_util::path_join(s_debug_dir, m_function_name + "_debug.txt");
std::stringstream ss; std::stringstream ss;
ss << "EXECUTION PLAN:\n"; ss << "\nEXECUTION PLAN:\n";
for (size_t i = 0; i < functors.size(); i++) for (size_t i = 0; i < functors.size(); i++)
{ {
ss << op_names.at(i) << "will be executed with the following inputs:\n"; ss << op_names.at(i) << " will be executed with the following inputs:\n";
for (auto is : this->m_op_attrs.at(i).Inputs) for (auto is : this->m_op_attrs.at(i).Inputs)
{ {
ss << "\t" << is << " = " << this->get_tensor_data(is) << std::endl; ss << "\t" << is << " = " << this->get_tensor_data(is) << std::endl;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment