Commit 2ec49d02 authored by charlie's avatar charlie
Browse files

Merge branch 'dyn_conv' of github.com:ROCmSoftwarePlatform/AMDMIGraphX into dyn_nms

parents 22fee23b d5636acd
......@@ -83,7 +83,11 @@ struct parse_convolution : op_parser<parse_convolution>
if(contains(info.attributes, "auto_pad"))
{
auto weight_lens = weights->get_shape().max_lens();
if(l0_shape.dynamic() or weights->get_shape().dynamic())
{
MIGRAPHX_THROW("PARSE_CONV: auto_pad and dynamic input shapes not supported");
}
auto weight_lens = weights->get_shape().lens();
std::vector<std::size_t> k_lens(weight_lens.begin() + 2, weight_lens.end());
cal_auto_padding_size(info,
values,
......
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