Commit e616b476 authored by Paul's avatar Paul
Browse files

Formatting

parent 2ac066ef
......@@ -41,16 +41,14 @@ struct id_ctx_op
struct id_ctx_final_op
{
std::string name() const { return "id_ctx_final_op"; }
migraphx::argument
compute(const migraphx::shape&, std::vector<migraphx::argument> args) const
migraphx::argument compute(const migraphx::shape&, std::vector<migraphx::argument> args) const
{
if(args.empty())
return {};
return args.front();
}
void finalize(id_target::context&, const migraphx::shape&, std::vector<migraphx::shape>)
{}
void finalize(id_target::context&, const migraphx::shape&, std::vector<migraphx::shape>) {}
migraphx::shape compute_shape(std::vector<migraphx::shape> inputs) const
{
......
......@@ -226,7 +226,7 @@ inline void run(int argc, const char* argv[])
for(auto&& name : cases)
{
auto f = m.find(name);
if (f == m.end())
if(f == m.end())
std::cout << "[ ERROR ] Test case '" << name << "' not found." << std::endl;
else
run_test_case(name, f->second);
......
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