Commit d625471b authored by Rob Earhart's avatar Rob Earhart

Style update

parent 37919248
......@@ -163,9 +163,10 @@ ngraph::runtime::plaidml::Config
// So to verify that there is a non-zero-length option value, test oval_len
// To verify that there is no option value, test has_oval
if (oname_begin == oname_end && !has_oval) {
// An empty option; poor style, but advance to the next.
continue;
if (oname_begin == oname_end && !has_oval)
{
// An empty option; poor style, but advance to the next.
continue;
}
// Check for verbosity
......
......@@ -47,9 +47,9 @@ ngraph::runtime::plaidml::pass::ReplicateCombination::ReplicateCombination()
*ait *= *uit;
}
replace_node(lower,
std::make_shared<plaidml::op::Replicate>(upper->get_argument(0),
std::move(axes)));
replace_node(
lower,
std::make_shared<plaidml::op::Replicate>(upper->get_argument(0), std::move(axes)));
return true;
};
......
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