Commit 4038c555 authored by Adam Procter's avatar Adam Procter Committed by Scott Cyphers

let convolutionbiasbackprop apply to 5D (#2230) (#2231)

parent 870b9b0d
......@@ -292,7 +292,8 @@ namespace ngraph
data_dilated = data_dilated || (s != 1);
}
if (!data_dilated && data_rank == 4 && delta_rank == 4 &&
if (!data_dilated && data_rank == delta_rank &&
(data_rank == 4 || data_rank == 5) &&
node->get_input_element_type(0) == element::f32)
{
runtime::cpu::mkldnn_utils::assign_mkldnn_kernel(node);
......
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