mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-30 20:18:08 +00:00
* Revert "Temporarily remove dnnl from Linux CI build to unblock the whole team (#4266)" Previously it fails because it used too much memory. Now we only run dnnl EP with opset12 models in unit tests, to reduce peak memory usage.
28 lines
667 B
YAML
28 lines
667 B
YAML
trigger: none
|
|
|
|
jobs:
|
|
- template: templates/linux-ci.yml
|
|
parameters:
|
|
AgentPool : 'Linux-CPU'
|
|
JobName: 'Onnxruntime_Linux_CPU_Training'
|
|
SubmoduleCheckoutMode: 'recursive'
|
|
BuildCommand: >
|
|
tools/ci_build/github/linux/run_dockerbuild.sh
|
|
-o ubuntu16.04 -d cpu -r $(Build.BinariesDirectory)
|
|
-x "
|
|
--build_wheel
|
|
--config $(buildConfig)
|
|
--enable_training
|
|
--use_dnnl
|
|
--use_mklml
|
|
"
|
|
DoNugetPack: 'false'
|
|
ArtifactName: 'drop-linux'
|
|
TimeoutInMinutes: 90
|
|
Strategy:
|
|
maxParallel: 2
|
|
matrix:
|
|
Debug:
|
|
buildConfig: Debug
|
|
Release:
|
|
buildConfig: Release
|