diff --git a/.github/workflows/windows_conditional_compilation.yml b/.github/workflows/windows_conditional_compilation.yml index fd9374e197c..8b09de26313 100644 --- a/.github/workflows/windows_conditional_compilation.yml +++ b/.github/workflows/windows_conditional_compilation.yml @@ -50,7 +50,7 @@ jobs: defaults: run: shell: pwsh - runs-on: aks-win-8-cores-64gb + runs-on: aks-win-32-cores-128gb env: CMAKE_BUILD_TYPE: 'Release' CMAKE_GENERATOR: 'Ninja Multi-Config' @@ -174,8 +174,8 @@ jobs: - name: Cmake build - CC COLLECT run: | - cmake --build ${{ env.BUILD_DIR }} --parallel 8 --config ${{ env.CMAKE_BUILD_TYPE }} && ` - cmake --build ${{ env.BUILD_DIR }} --parallel 8 --config ${{ env.CMAKE_BUILD_TYPE }} --target sea_itt_lib + cmake --build ${{ env.BUILD_DIR }} --parallel 32 --config ${{ env.CMAKE_BUILD_TYPE }} && ` + cmake --build ${{ env.BUILD_DIR }} --parallel 32 --config ${{ env.CMAKE_BUILD_TYPE }} --target sea_itt_lib - name: Show ccache stats run: '& ccache --show-stats' @@ -262,7 +262,7 @@ jobs: defaults: run: shell: pwsh - runs-on: aks-win-8-cores-64gb + runs-on: aks-win-32-cores-128gb env: CMAKE_BUILD_TYPE: 'Release' OPENVINO_REPO: "${{ github.workspace }}\\openvino" diff --git a/src/plugins/intel_cpu/src/node.cpp b/src/plugins/intel_cpu/src/node.cpp index bd2f52adf04..92cac1eb0b2 100644 --- a/src/plugins/intel_cpu/src/node.cpp +++ b/src/plugins/intel_cpu/src/node.cpp @@ -692,9 +692,8 @@ void Node::filterSupportedPrimitiveDescriptors() { // Compare by format tag auto areCompatible = [](const MemoryDesc& desc, dnnl::memory::format_tag fmt) -> bool { - auto fmt_tdesc = DnnlBlockedMemoryDesc(desc.getShape(), - DnnlExtensionUtils::ElementTypeToDataType(desc.getPrecision()), - fmt); + auto data_type = DnnlExtensionUtils::ElementTypeToDataType(desc.getPrecision()); + auto fmt_tdesc = DnnlBlockedMemoryDesc(desc.getShape(), data_type, fmt); return desc.isCompatible(fmt_tdesc); };