"...composable_kernel_rocm.git" did not exist on "97648ccd662b0b55013984e0f8d31da02f24bfad"
Commit 16635962 authored by Paul's avatar Paul
Browse files

Formatting

parent b7cba4b1
...@@ -59,14 +59,8 @@ bool program::has_instruction(instruction_ref ins) const ...@@ -59,14 +59,8 @@ bool program::has_instruction(instruction_ref ins) const
}) != impl->instructions.end(); }) != impl->instructions.end();
} }
instruction_ref program::begin() instruction_ref program::begin() { return impl->instructions.begin(); }
{ instruction_ref program::end() { return impl->instructions.end(); }
return impl->instructions.begin();
}
instruction_ref program::end()
{
return impl->instructions.end();
}
literal program::eval(std::unordered_map<std::string, argument> params) const literal program::eval(std::unordered_map<std::string, argument> params) const
{ {
......
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