feat: add LLM2QnnLoweringPass and update graph splitting logic #34
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: Test Linux x86_64 Compilation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "requirements.txt" | |
| - "task.py" | |
| - "tasks/build_x86.yaml" | |
| - ".github/workflows/build-x86.yml" | |
| - "mllm/**" | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "requirements.txt" | |
| - "task.py" | |
| - "tasks/build_x86.yaml" | |
| - ".github/workflows/build-x86.yml" | |
| - "mllm/**" | |
| jobs: | |
| build-x86: | |
| if: github.repository == 'UbiquitousLearning/mllm' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Initialize and update submodules | |
| run: | | |
| git submodule init | |
| git submodule update --init --recursive | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| cache: "pip" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| - name: Execute build task | |
| run: | | |
| python task.py tasks/build_x86.yaml |