Skip to content

Commit 347b990

Browse files
Fix failing mainline build on Arm64 linux (#27101)
### Description `sconv.h` was renamed to `sconv_nchwc_kernel_neon.h` in #26688 but the reference to the old name was still in a new file added at around the same time in #26838. The CI doesn't include building for this configuration yet - it will be added after the 1.24 release. ### Motivation and Context Fixes failing mainline build on Arm64 linux when `--enable_arm_neon_nchwc` is supplied. ### Testing This now passes on Arm64 linux `./build.sh --config Release --build_shared_lib --parallel --compile_no_warning_as_error --skip_submodule_sync --skip_tests --enable_pybind --build_wheel --enable_arm_neon_nchwc`
1 parent 2aaf21b commit 347b990

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

onnxruntime/core/mlas/lib/sbconv_kernel_neon.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Module Name:
1717
#if defined(MLAS_USE_ARM_NEON_NCHWC) && defined(__linux__)
1818

1919
#include "mlasi.h"
20-
#include "sconv.h"
20+
#include "sconv_nchwc_kernel_neon.h"
2121

2222
constexpr size_t BlockSize = MLAS_PLATFORM::MLAS_NEON_NCHWC_BLOCK_SIZE;
2323

onnxruntime/core/mlas/lib/sconv_nchwc_kernel_neon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Licensed under the MIT License.
66
77
Module Name:
88
9-
sconv.h
9+
sconv_nchwc_kernel_neon.h
1010
1111
Abstract:
1212

0 commit comments

Comments
 (0)