This repository has been archived by the owner on Oct 25, 2024. It is now read-only.
[Optimization] Text-generation support qwen #550
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Optimize Unit Test | |
on: | |
pull_request: | |
branches: [main] | |
paths: | |
- intel_extension_for_transformers/transformers/** | |
- intel_extension_for_transformers/utils/** | |
- intel_extension_for_transformers/llm/evaluation/** | |
- intel_extension_for_transformers/llm/quantization/** | |
- tests/** | |
- .github/workflows/unit-test-optimize.yml | |
- .github/workflows/script/unitTest/** | |
workflow_dispatch: | |
# If there is a new commit, the previous jobs will be canceled | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
DOCKER_CONFIG_NAME: "commonDockerConfig" | |
REPO_NAME: "intel-extension-for-transformers" | |
REPO_TAG: "py38" | |
DOCKER_FILE_NAME: "devel" | |
CONTAINER_NAME: "utTest" | |
EXTRA_CONTAINER_NAME: "modelTest" | |
jobs: | |
unit-test: | |
runs-on: [self-hosted, Linux, X64, itrex-node] | |
strategy: | |
matrix: | |
include: | |
- test_branch: ${{ github.ref }} | |
test_name: "PR-test" | |
- test_branch: "main" | |
test_name: "baseline" | |
steps: | |
- name: Docker Clean Up | |
run: | | |
docker ps -a | |
if [[ $(docker ps -a | grep -i '${{ env.CONTAINER_NAME }}'$) ]]; then | |
docker start ${{ env.CONTAINER_NAME }} | |
echo "remove left files through container ..." | |
docker exec ${{ env.CONTAINER_NAME }} bash -c "ls -a /intel-extension-for-transformers && rm -fr /intel-extension-for-transformers/* && rm -fr /intel-extension-for-transformers/.* || true" | |
fi | |
if [[ $(docker ps -a | grep -i '${{ env.EXTRA_CONTAINER_NAME }}'$) ]]; then | |
docker start ${{ env.EXTRA_CONTAINER_NAME }} | |
echo "remove left files through container ..." | |
docker exec ${{ env.EXTRA_CONTAINER_NAME }} bash -c "ls -a /intel-extension-for-transformers && rm -fr /intel-extension-for-transformers/* && rm -fr /intel-extension-for-transformers/.* || true" | |
fi | |
- name: Checkout out Repo | |
uses: actions/checkout@v3 | |
with: | |
submodules: "recursive" | |
ref: ${{ matrix.test_branch }} | |
fetch-tags: true | |
- name: Docker Build | |
run: | | |
docker build -f ${{ github.workspace }}/.github/workflows/docker/${{ env.DOCKER_FILE_NAME }}.dockerfile -t ${{ env.REPO_NAME }}:${{ env.REPO_TAG }} . | |
- name: Docker Run | |
run: | | |
if [[ $(docker ps -a | grep -i '${{ env.CONTAINER_NAME }}'$) ]]; then | |
docker stop ${{ env.CONTAINER_NAME }} | |
docker rm -vf ${{ env.CONTAINER_NAME }} || true | |
fi | |
docker run -dit --disable-content-trust --privileged --name=${{ env.CONTAINER_NAME }} -v /dev/shm:/dev/shm \ | |
-v ${{ github.workspace }}:/intel-extension-for-transformers \ | |
-v /tf_dataset2:/tf_dataset2 \ | |
-v ~/.cache/oneAPI:/cache \ | |
${{ env.REPO_NAME }}:${{ env.REPO_TAG }} | |
- name: Env build | |
run: | | |
docker exec ${{ env.CONTAINER_NAME }} \ | |
bash /intel-extension-for-transformers/.github/workflows/script/prepare_env.sh | |
- name: Binary build | |
run: | | |
docker exec ${{ env.CONTAINER_NAME }} \ | |
bash -c "cd /intel-extension-for-transformers/.github/workflows/script \ | |
&& bash install_binary.sh \ | |
&& pip install intel_extension_for_pytorch wget tensorflow sentencepiece \ | |
&& pip install --upgrade accelerate" | |
- name: Run UT | |
run: | | |
docker exec ${{ env.CONTAINER_NAME }} \ | |
bash -c "cd /intel-extension-for-transformers/.github/workflows/script/unitTest \ | |
&& bash run_unit_test_optimize.sh --test_name=${{ matrix.test_name }}" | |
- name: Collect log | |
if: ${{ !cancelled() }} | |
run: | | |
docker exec ${{ env.CONTAINER_NAME }} \ | |
bash -c "cd /intel-extension-for-transformers && \ | |
mv /log_dir . " | |
- name: Publish pipeline artifact | |
uses: actions/upload-artifact@v3 | |
if: ${{ !cancelled() }} | |
with: | |
name: "UnitTest${{ matrix.test_name }}" | |
path: ${{ github.workspace }}/log_dir | |
Genreate-Report: | |
runs-on: itrex-node-spell | |
needs: [unit-test] | |
steps: | |
- name: Checkout out Repo | |
uses: actions/checkout@v3 | |
- name: Download UT PR Log | |
uses: actions/download-artifact@v3 | |
with: | |
path: ${{ github.workspace }}/log_dir | |
- name: Display structure of downloaded files | |
run: cd ${{ github.workspace }}/log_dir && ls -R | |
- name: Calculte coverage | |
run: | | |
cd ${{ github.workspace }}/.github/workflows/script/unitTest/coverage | |
/usr/bin/bash calc_coverage.sh ${{ github.workspace }}/log_dir | |
- name: Publish pipeline artifact | |
uses: actions/upload-artifact@v3 | |
if: ${{ !cancelled() }} | |
with: | |
name: Optimize Unit Test | |
path: ${{ github.workspace }}/log_dir | |
retention-days: 5 | |