Skip to content

Commit

Permalink
Make block style YML
Browse files Browse the repository at this point in the history
  • Loading branch information
yuslepukhin committed Mar 25, 2024
1 parent be27621 commit 6c73a35
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions tools/ci_build/github/azure-pipelines/win-gpu-ci-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,10 @@ stages:
BuildConfig: 'RelWithDebInfo'
EnvSetupScript: setup_env_cuda.bat
buildArch: x64
additionalBuildFlags: --enable_pybind --build_java --build_nodejs --use_cuda --cuda_home="$(Agent.TempDirectory)\v11.8" ^
--enable_cuda_profiling ^
--cmake_extra_defines CMAKE_CUDA_ARCHITECTURES=86 ^
additionalBuildFlags: >
--enable_pybind --build_java --build_nodejs --use_cuda --cuda_home="$(Agent.TempDirectory)\v11.8"
--enable_cuda_profiling
--cmake_extra_defines CMAKE_CUDA_ARCHITECTURES=86
--cmake_extra_defines onnxruntime_ENABLE_CUDA_EP_INTERNAL_TESTS=ON
msbuildPlatform: x64
isX86: false
Expand All @@ -62,9 +63,10 @@ stages:
BuildConfig: 'RelWithDebInfo'
EnvSetupScript: setup_env_cuda.bat
buildArch: x64
additionalBuildFlags: --enable_pybind --enable_training --use_cuda --cuda_home="$(Agent.TempDirectory)\v11.8" ^
--skip_onnx_tests ^
--cmake_extra_defines CMAKE_CUDA_ARCHITECTURES=86 ^
additionalBuildFlags: >
--enable_pybind --enable_training --use_cuda --cuda_home="$(Agent.TempDirectory)\v11.8"
--skip_onnx_tests
--cmake_extra_defines CMAKE_CUDA_ARCHITECTURES=86
--cmake_extra_defines onnxruntime_ENABLE_CUDA_EP_INTERNAL_TESTS=ON
msbuildPlatform: x64
isX86: false
Expand Down Expand Up @@ -101,10 +103,11 @@ stages:
EnvSetupScript: setup_env_cuda.bat
buildArch: x64
# note: need to specify `--gen_doc` when creating the build config so it has to be in additionalBuildFlags
additionalBuildFlags: --gen_doc validate --skip_tests --enable_pybind --use_dml --use_cuda ^
--cuda_home="$(Agent.TempDirectory)\v11.8" ^
--cmake_extra_defines CMAKE_CUDA_ARCHITECTURES=86 ^
--cmake_extra_defines onnxruntime_BUILD_UNIT_TESTS=OFF ^
additionalBuildFlags: >
--gen_doc validate --skip_tests --enable_pybind --use_dml --use_cuda
--cuda_home="$(Agent.TempDirectory)\v11.8"
--cmake_extra_defines CMAKE_CUDA_ARCHITECTURES=86
--cmake_extra_defines onnxruntime_BUILD_UNIT_TESTS=OFF
--cmake_extra_defines onnxruntime_ENABLE_CUDA_EP_INTERNAL_TESTS=ON
msbuildPlatform: x64
isX86: false
Expand Down

0 comments on commit 6c73a35

Please sign in to comment.