disables qnn in ort training cpu pipeline (#21510)

### Description
<!-- Describe your changes. -->

`enable_windows_arm64_qnn` and `enable_windows_x64_qnn` are true by
default but unnecessary for training. This change explicitly sets these
parameters to false for training pipeline.

### Motivation and Context
<!-- - Why is this change required? What problem does it solve?
- If it fixes an open issue, please link to the issue here. -->

ORT 1.19 Release Preparation
This commit is contained in:
Prathik Rao 2024-07-26 02:23:35 -07:00 committed by GitHub
parent b6b29309a5
commit 278f0f5cd2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,3 +22,5 @@ stages:
enable_windows_gpu: false
enable_mac_cpu: true
enable_linux_arm: false
enable_windows_arm64_qnn: false
enable_windows_x64_qnn: false