Commit fd6f1cc6 authored by Paul's avatar Paul
Browse files

Print out info about convolution

parent 2b48efe7
...@@ -131,6 +131,15 @@ struct miopen_convolution ...@@ -131,6 +131,15 @@ struct miopen_convolution
algo = perf.fwd_algo; algo = perf.fwd_algo;
return shape{shape::int8_type, {perf.memory}}; return shape{shape::int8_type, {perf.memory}};
} }
friend std::ostream& operator<<(std::ostream& os, const miopen_convolution& self)
{
os << self.name() << "[";
os << self.op << ", ";
os << "algo=" << self.algo;
os << "]";
return os;
}
}; };
struct miopen_pooling struct miopen_pooling
......
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