Skip to content

Commit

Permalink
change order of reduce descriptors
Browse files Browse the repository at this point in the history
  • Loading branch information
alvoron committed May 7, 2024
1 parent 5d62f3a commit ca2738e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/intel_cpu/src/nodes/reduce.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1983,8 +1983,8 @@ void Reduce::initSupportedPrimitiveDescriptors() {
if (axis < 0)
axis += static_cast<int>(getInputShapeAtPort(REDUCE_DATA).getRank());
}
pushDesc(LayoutType::nspc, LayoutType::nspc, input_prec, output_prec, impl_desc_type::undef, true);
pushDesc(LayoutType::ncsp, LayoutType::ncsp, input_prec, output_prec, impl_desc_type::undef, true);
pushDesc(LayoutType::nspc, LayoutType::nspc, input_prec, output_prec, impl_desc_type::undef, true);
canUseAclExecutor = !supportedPrimitiveDescriptors.empty();
if (canUseAclExecutor)
return;
Expand Down

0 comments on commit ca2738e

Please sign in to comment.