[CPU] Disabled MLAS FC impl on ARM (#18947)

Fixes regression introduced in PR18879
This commit is contained in:
Aleksandr Voron 2023-08-03 06:59:31 +02:00 committed by GitHub
parent 31e46ea255
commit 8846b5ddd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -283,7 +283,7 @@ void FullyConnected::getSupportedDescriptors() {
inDims = isDynamicNode() ? makeDummyInputDims() : getInputShapeAtPort(DATA_ID).getStaticDims();
outDims = isDynamicNode() ? makeDummyOutputDims(inDims) : getOutputShapeAtPort(0).getStaticDims();
#ifdef OV_CPU_WITH_MLAS
#if defined(OV_CPU_WITH_MLAS) && (defined(OPENVINO_ARCH_X86) || defined(OPENVINO_ARCH_X86_64))
// MLAS doesn't support post-ops fusing and only supports FP32. INT8 is not enabled yet
// Disable MLAS when FC could fuse post-ops
useMlas = !useSparseWeights &&