Skip to content

Commit

Permalink
ACL fix
Browse files Browse the repository at this point in the history
  • Loading branch information
antonvor committed Oct 3, 2023
1 parent 8d53872 commit 4efb15f
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/plugins/intel_cpu/src/nodes/fullyconnected.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -473,11 +473,7 @@ void FullyConnected::prepareWeightsUsingDummyShape() {
auto prim_desc = createPrimitiveDesc(key, getEngine());
auto weights = DnnlExtensionUtils::makeDescriptor(prim_desc.weights_desc());
// ignore the result since we just need to put the reordered weights into the cache
if (weightsNonTransposed) {
(void) prepareWeightMemory(weights, makeTransposedWeightDescriptor(weights));
} else {
(void) prepareWeightMemory(weights);
}
(void) prepareWeightMemory(weights);
}
#endif

Expand Down

0 comments on commit 4efb15f

Please sign in to comment.