"include/ck/ck.hpp" did not exist on "80120f0a0c524d1efc0249926a73d5020f0efd67"
Commit 060ffb39 authored by Paul's avatar Paul
Browse files

Formatting

parent 1a430735
...@@ -138,9 +138,8 @@ MIGRAPH_PRED_MATCHER(fusable_conv, instruction_ref ins) ...@@ -138,9 +138,8 @@ MIGRAPH_PRED_MATCHER(fusable_conv, instruction_ref ins)
if(wei.lens()[1] > 512 and conv.algo != miopenConvolutionFwdAlgoWinograd) if(wei.lens()[1] > 512 and conv.algo != miopenConvolutionFwdAlgoWinograd)
return false; return false;
auto op = conv.op; auto op = conv.op;
return contains({{0, 0}, {1, 1}, {2, 2}}, op.padding) and return contains({{0, 0}, {1, 1}, {2, 2}}, op.padding) and
contains({{0, 0}, {1, 1}}, op.stride) and contains({{0, 0}, {1, 1}}, op.stride) and op.dilation == make_array<size_t>(1, 1);
op.dilation == make_array<size_t>(1, 1);
} }
struct hip_triadd struct hip_triadd
......
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