Unverified Commit a9291030 authored by Scott Cyphers's avatar Scott Cyphers Committed by GitHub

Merge branch 'master' into mkarzyns/disable_cpu_test

parents ddef598c d8b2dd79
......@@ -1982,10 +1982,10 @@ void runtime::cpu::CPU_ExternalFunction::build()
file_util::path_join(s_debug_dir, m_function_name + "_debug.txt");
std::stringstream ss;
ss << "EXECUTION PLAN:\n";
ss << "\nEXECUTION PLAN:\n";
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)
{
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