Skip to content

Commit

Permalink
Apply review comments 2
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorDuplensky committed May 24, 2021
1 parent fa795ac commit 628c55f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -448,8 +448,8 @@ void MKLDNNROIPoolingNode::createPrimitive() {
auto selectedPD = getSelectedPrimitiveDescriptor();
jpp.src_prc = selectedPD->getConfig().inConfs[0].desc.getPrecision();
jpp.dst_prc = selectedPD->getConfig().outConfs[0].desc.getPrecision();
jpp.src_data_size = MKLDNNExtensionUtils::sizeOfDataType(MKLDNNExtensionUtils::IEPrecisionToDataType(jpp.src_prc));
jpp.dst_data_size = MKLDNNExtensionUtils::sizeOfDataType(MKLDNNExtensionUtils::IEPrecisionToDataType(jpp.dst_prc));
jpp.src_data_size = jpp.src_prc.size();
jpp.dst_data_size = jpp.dst_prc.size();

jpp.alg = getAlgorithm();

Expand Down

0 comments on commit 628c55f

Please sign in to comment.