mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-26 22:35:43 +00:00
### Description <!-- Describe your changes. --> Old pool | New pool | Notes -- | -- | -- onnxruntime-Win-CPU-2019 | onnxruntime-Win-CPU-2022 | onnxruntime-Win2019-CPU-training | onnxruntime-Win2022-CPU-training-AMD | onnxruntime-Win2019-CPU-training-AMD | onnxruntime-Win2022-CPU-training-AMD | Same as the above onnxruntime-Win2019-GPU-dml-A10 | Need be created | You need to create a new image for it first onnxruntime-Win2019-GPU-T4 | onnxruntime-Win2022-GPU-T4 | onnxruntime-Win2019-GPU-training-T4 | onnxruntime-Win2022-GPU-T4 | Same as the above because we do not have many T4 GPUs onnxruntime-tensorrt8-winbuild-T4| TBD|TBD Win-CPU-2021|onnxruntime-Win-CPU-2022| will do it in next PR Win-CPU-2019|onnxruntime-Win2022-Intel-CPU'| Intel CPU needed for win-ci-pipeline.yml -> `stage: x64_release_dnnl` <br class="Apple-interchange-newline"> ### Motivation and Context With vs2022 we can take the advantage of 64bit compiler. It also with better c++20 support
37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
name: Windows_CI
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
Onnxruntime-TVM:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true
|
|
- uses: actions/setup-python@v3
|
|
with:
|
|
python-version: '3.8.x'
|
|
architecture: 'x64'
|
|
- uses: conda-incubator/setup-miniconda@v2
|
|
with:
|
|
activate-environment: ""
|
|
- name: 'Install LLVM-Dev'
|
|
shell: pwsh
|
|
run: |
|
|
conda install llvmdev=12.0.0
|
|
conda info
|
|
conda list
|
|
- name: 'Add LLVM-Dev binaries to the PATH'
|
|
run: |
|
|
echo "C:/Miniconda/Library/bin" >> $GITHUB_PATH
|
|
- name: 'Setup TVM EP Python requirements'
|
|
run: |
|
|
python3 -m pip install -r ${{ github.workspace }}/tools/ci_build/github/linux/tvm/requirements.txt
|
|
- name: 'Build and Test'
|
|
run: |
|
|
python3 ${{ github.workspace }}/tools/ci_build/build.py --build_dir build --config Release --skip_submodule_sync --parallel --enable_pybind --disable_contrib_ops --disable_ml_ops --skip_onnx_tests --use_tvm
|