Commit ada8d9b8 authored by Matthew Brookhart's avatar Matthew Brookhart Committed by Adam Procter

let convolutionbiasbackprop apply to 5D (#2230)

parent bf14a381
......@@ -281,7 +281,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