"src/layout/gemm_layouts.cc" did not exist on "64f17c2f369e612cc297d358f607307a615bbb59"
Commit 0fe0dfdd authored by Paul's avatar Paul
Browse files

Formatting

parent 47212d64
...@@ -720,7 +720,7 @@ struct onnx_parser ...@@ -720,7 +720,7 @@ struct onnx_parser
result = ops[node.op_type()](get_attributes(node), args); result = ops[node.op_type()](get_attributes(node), args);
} }
// Even no output nodes produce output in migraphx // Even no output nodes produce output in migraphx
if (node.output().empty() and result.size() == 1) if(node.output().empty() and result.size() == 1)
{ {
instructions[name] = result.front(); instructions[name] = result.front();
} }
...@@ -765,9 +765,9 @@ struct onnx_parser ...@@ -765,9 +765,9 @@ struct onnx_parser
std::size_t n = 0; std::size_t n = 0;
for(auto&& node : graph.node()) for(auto&& node : graph.node())
{ {
if (node.output().empty()) if(node.output().empty())
{ {
if (node.name().empty()) if(node.name().empty())
{ {
result["migraphx_unamed_node_" + std::to_string(n)] = node; result["migraphx_unamed_node_" + std::to_string(n)] = node;
n++; n++;
......
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