Fix text_llm_runner kv cache pos count and use it for generate() (#15… #259
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 CoreML Backend | |
| on: | |
| schedule: | |
| - cron: 0 2 * * * | |
| push: | |
| branches: | |
| - release/* | |
| tags: | |
| - ciflow/nightly/* | |
| pull_request: | |
| paths: | |
| - .github/workflows/test-backend-coreml.yml | |
| - .github/workflows/_test_backend.yml | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}--${{ github.event.pull_request.number || github.sha }}-${{ github.event_name == 'workflow_dispatch' }} | |
| cancel-in-progress: true | |
| jobs: | |
| test-coreml: | |
| uses: ./.github/workflows/_test_backend.yml | |
| with: | |
| backend: coreml | |
| flows: '["coreml", "coreml_static_int8"]' | |
| ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} | |
| timeout: 120 | |
| run-macos: true |