[LLM] Separate windows build UT and build runner (#9403)
* Separate windows build UT and build runner * Small fix
This commit is contained in:
parent
36fbe2144d
commit
3d107f6d25
3 changed files with 7 additions and 7 deletions
6
.github/workflows/llm-binary-build.yml
vendored
6
.github/workflows/llm-binary-build.yml
vendored
|
|
@ -327,7 +327,7 @@ jobs:
|
||||||
name: windows-avx2
|
name: windows-avx2
|
||||||
|
|
||||||
windows-build-avx2:
|
windows-build-avx2:
|
||||||
runs-on: [self-hosted, Windows, AVX-VNNI]
|
runs-on: [self-hosted, Windows, AVX-VNNI-Build]
|
||||||
needs: check-windows-avx2-artifact
|
needs: check-windows-avx2-artifact
|
||||||
if: needs.check-windows-avx2-artifact.outputs.if-exists == 'false'
|
if: needs.check-windows-avx2-artifact.outputs.if-exists == 'false'
|
||||||
steps:
|
steps:
|
||||||
|
|
@ -371,7 +371,7 @@ jobs:
|
||||||
name: windows-avx-vnni
|
name: windows-avx-vnni
|
||||||
|
|
||||||
windows-build-avx-vnni:
|
windows-build-avx-vnni:
|
||||||
runs-on: [self-hosted, Windows, AVX-VNNI]
|
runs-on: [self-hosted, Windows, AVX-VNNI-Build]
|
||||||
needs: check-windows-avx-vnni-artifact
|
needs: check-windows-avx-vnni-artifact
|
||||||
if: needs.check-windows-avx-vnni-artifact.outputs.if-exists == 'false'
|
if: needs.check-windows-avx-vnni-artifact.outputs.if-exists == 'false'
|
||||||
steps:
|
steps:
|
||||||
|
|
@ -480,7 +480,7 @@ jobs:
|
||||||
name: windows-avx
|
name: windows-avx
|
||||||
|
|
||||||
windows-build-avx:
|
windows-build-avx:
|
||||||
runs-on: [self-hosted, Windows, AVX-VNNI]
|
runs-on: [self-hosted, Windows, AVX-VNNI-Build]
|
||||||
needs: check-windows-avx-artifact
|
needs: check-windows-avx-artifact
|
||||||
if: needs.check-windows-avx-artifact.outputs.if-exists == 'false'
|
if: needs.check-windows-avx-artifact.outputs.if-exists == 'false'
|
||||||
steps:
|
steps:
|
||||||
|
|
|
||||||
2
.github/workflows/llm-nightly-test.yml
vendored
2
.github/workflows/llm-nightly-test.yml
vendored
|
|
@ -30,7 +30,7 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- os: windows
|
- os: windows
|
||||||
instruction: AVX-VNNI
|
instruction: AVX-VNNI-UT
|
||||||
python-version: "3.9"
|
python-version: "3.9"
|
||||||
- os: ubuntu-20.04-lts
|
- os: ubuntu-20.04-lts
|
||||||
instruction: avx512
|
instruction: avx512
|
||||||
|
|
|
||||||
6
.github/workflows/llm_unit_tests.yml
vendored
6
.github/workflows/llm_unit_tests.yml
vendored
|
|
@ -44,19 +44,19 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- os: windows
|
- os: windows
|
||||||
instruction: AVX-VNNI
|
instruction: AVX-VNNI-UT
|
||||||
python-version: "3.9"
|
python-version: "3.9"
|
||||||
- os: ubuntu-20.04-lts
|
- os: ubuntu-20.04-lts
|
||||||
instruction: avx512
|
instruction: avx512
|
||||||
python-version: "3.9"
|
python-version: "3.9"
|
||||||
- os: windows
|
- os: windows
|
||||||
instruction: AVX-VNNI
|
instruction: AVX-VNNI-UT
|
||||||
python-version: "3.10"
|
python-version: "3.10"
|
||||||
- os: ubuntu-20.04-lts
|
- os: ubuntu-20.04-lts
|
||||||
instruction: avx512
|
instruction: avx512
|
||||||
python-version: "3.10"
|
python-version: "3.10"
|
||||||
- os: windows
|
- os: windows
|
||||||
instruction: AVX-VNNI
|
instruction: AVX-VNNI-UT
|
||||||
python-version: "3.11"
|
python-version: "3.11"
|
||||||
- os: ubuntu-20.04-lts
|
- os: ubuntu-20.04-lts
|
||||||
instruction: avx512
|
instruction: avx512
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue