[BugFix] Fix fp4 #18596
Workflow file for this run
This file contains hidden or 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: CI_XPU | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| branches: [develop, release/**] | |
| permissions: read-all | |
| concurrency: | |
| group: ${{ github.event.pull_request.number }}-${{ github.workflow }} | |
| cancel-in-progress: true | |
| jobs: | |
| clone: | |
| name: FD-Clone-Linux-XPU | |
| uses: ./.github/workflows/_clone_linux.yml | |
| secrets: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| xpu_build_test: | |
| name: xpu_build_test | |
| needs: [clone] | |
| uses: ./.github/workflows/_build_xpu.yml | |
| with: | |
| FASTDEPLOY_ARCHIVE_URL: ${{ needs.clone.outputs.repo_archive_url }} | |
| DOCKER_IMAGE: ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/fastdeploy-xpu:ci | |
| secrets: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| xpu_4cards_case_test: | |
| name: xpu_4cards_case_test | |
| needs: [clone, xpu_build_test] | |
| uses: ./.github/workflows/_xpu_4cards_case_test.yml | |
| with: | |
| FASTDEPLOY_ARCHIVE_URL: ${{ needs.clone.outputs.repo_archive_url }} | |
| DOCKER_IMAGE: ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/fastdeploy-xpu:ci | |
| FASTDEPLOY_WHEEL_URL: ${{ needs.xpu_build_test.outputs.wheel_path }} | |
| MODEL_PATH: /ssd3/model | |
| secrets: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| xpu_8cards_case_test: | |
| name: xpu_8cards_case_test | |
| needs: [clone, xpu_build_test] | |
| uses: ./.github/workflows/_xpu_8cards_case_test.yml | |
| with: | |
| FASTDEPLOY_ARCHIVE_URL: ${{ needs.clone.outputs.repo_archive_url }} | |
| DOCKER_IMAGE: ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/fastdeploy-xpu:ci | |
| FASTDEPLOY_WHEEL_URL: ${{ needs.xpu_build_test.outputs.wheel_path }} | |
| MODEL_PATH: /ssd3/model | |
| secrets: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| xpu_unit_test: | |
| name: xpu_unit_test | |
| needs: [clone, xpu_build_test] | |
| uses: ./.github/workflows/_xpu_unit_test.yml | |
| with: | |
| FASTDEPLOY_ARCHIVE_URL: ${{ needs.clone.outputs.repo_archive_url }} | |
| DOCKER_IMAGE: ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/fastdeploy-xpu:ci | |
| FASTDEPLOY_WHEEL_URL: ${{ needs.xpu_build_test.outputs.wheel_path }} | |
| secrets: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| xpu_coverage_report: | |
| name: xpu_coverage_report | |
| needs: [clone, xpu_4cards_case_test, xpu_8cards_case_test, xpu_unit_test] | |
| if: ${{ always() && needs.clone.result == 'success' }} | |
| uses: ./.github/workflows/_xpu_coverage_report.yml | |
| with: | |
| DOCKER_IMAGE: ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/fastdeploy-xpu:ci | |
| FASTDEPLOY_ARCHIVE_URL: ${{ needs.clone.outputs.repo_archive_url }} | |
| COVERAGE_UNIT_TEST_URL: ${{ needs.xpu_unit_test.outputs.coverage_data_url }} | |
| COVERAGE_4CARDS_URL: ${{ needs.xpu_4cards_case_test.outputs.coverage_data_url }} | |
| COVERAGE_8CARDS_URL: ${{ needs.xpu_8cards_case_test.outputs.coverage_data_url }} | |
| secrets: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |