test fix WIP #9
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: Optimum TPU / Test TGI on TPU | |
on: | |
push: | |
branches: [ main, enable-ci-cd ] | |
paths: | |
- "text-generation-inference/**" | |
- ".github/**" | |
pull_request: | |
branches: [ main ] | |
paths: | |
- "text-generation-inference/**" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
do-the-job: | |
name: Run TGI tests | |
runs-on: optimum-tpu | |
container: | |
# Use an image that works with TPU with Pytorch 2.3.0 (release was not working) | |
image: us-central1-docker.pkg.dev/tpu-pytorch-releases/docker/xla@sha256:8f1dcd5b03f993e4da5c20d17c77aff6a5f22d5455f8eb042d2e4b16ac460526 | |
# image: ubuntu:22.04 | |
options: --shm-size "16gb" --ipc host --privileged | |
env: | |
PJRT_DEVICE: TPU | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Checking Pytorch/XLA installation | |
run: python -c "import torch_xla.core.xla_model as xm; assert xm.xla_device().type == 'xla', 'XLA device not available'" | |
- name: Build and test TGI server | |
run: make tgi_test |