Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/linux_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
dockerfile_path: tools/ci_build/github/linux/docker/inference/aarch64/default/cpu/Dockerfile
docker_image_repo: onnxruntimecpubuildciaarch64
# ASan disabled due to excessive runtime (>4hr). Includes wheel build for basic checks.
extra_build_flags: '--use_binskim_compliant_compile_flags --build_shared_lib'
extra_build_flags: '--use_binskim_compliant_compile_flags --build_shared_lib --enable_arm_neon_nchwc'
job_identifier: build-linux-arm64-debug
secrets:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ jobs:
matrix:
SHARED_LIB:
QnnLibKind: 'shared_lib'
ExtraQnnBuildArgs: '--client_package_build'
# We currently do not have a standalone Windows ARM64 CI pipeline for the CPU EP,
# so we enable --enable_arm_neon_nchwc for additional coverage of the NCHWc code paths in the CPU EP.
# Once we have a standalone Windows ARM64 CI pipeline for the CPU EP, we can consider adding --enable_arm_neon_nchwc
# to that pipeline and removing it from this pipeline since this pipeline is primarily for testing the QNN EP.
ExtraQnnBuildArgs: '--client_package_build --enable_arm_neon_nchwc'
STATIC_LIB:
QnnLibKind: 'static_lib'
ExtraQnnBuildArgs: ''
Expand Down
Loading