Automate artifact generations #7
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
# Copyright 2023 The OpenXLA Authors | |
# | |
# Licensed under the Apache License v2.0 with LLVM Exceptions. | |
# See https://llvm.org/LICENSE.txt for license information. | |
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | |
# | |
# Comparative Benchmarks Workflow. | |
name: Update Model Artifacts | |
on: | |
schedule: | |
# Scheduled to run at 09:00 UTC. | |
- cron: '0 09 * * *' | |
workflow_dispatch: | |
pull_request: | |
concurrency: | |
# A PR number if a pull request and otherwise the commit hash. This cancels | |
# queued and in-progress runs for the same PR (presubmit) or commit | |
# (postsubmit). | |
group: ${{ github.workflow }}-${{ github.event.number || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
setup: | |
runs-on: ubuntu-22.04 | |
outputs: | |
runner-group: ${{ steps.configure.outputs.runner-group }} | |
steps: | |
- name: "Checking out PR repository" | |
uses: actions/checkout@e2f20e631ae6d7dd3b768f56a5d2af784dd54791 # v2.5.0 | |
- name: "Configuring CI options" | |
id: configure | |
env: | |
RUNNER_GROUP: ${{ github.event_name == 'pull_request' && 'presubmit' || 'postsubmit' }} | |
run: | | |
# Just informative logging. There should only be two commits in the | |
# history here, but limiting the depth helps when copying from a local | |
# repo instead of using checkout, e.g. with | |
# https://github.com/nektos/act where there will be more. | |
git log --oneline --graph --max-count=3 | |
# Workflow jobs can't access `env` in `runs-on`, so we need to make | |
# `runner-group` a job output variable. | |
echo "runner-group=${RUNNER_GROUP}" > "${GITHUB_OUTPUT}" | |
generate_artifacts: | |
needs: setup | |
runs-on: | |
- self-hosted # must come first | |
- runner-group=${{ needs.setup.outputs.runner-group }} | |
- environment=prod | |
- machine-type=a2-highgpu-1g | |
steps: | |
- name: "Checking out PR repository" | |
uses: actions/checkout@e2f20e631ae6d7dd3b768f56a5d2af784dd54791 # v2.5.0 | |
- name: "Generate JAX model artifacts" | |
run: | | |
mkdir jax | |
docker run --gpus all --mount="type=bind,src="${PWD}",target=/work" --workdir="/work" \ | |
--env "PYTHON=python3" \ | |
--env "WITH_CUDA=1" \ | |
--env "AUTO_UPLOAD=0" \ | |
--env "OUTPUT_DIR=jax" \ | |
"gcr.io/iree-oss/openxla-benchmark/cuda11.8-cudnn8.9@sha256:f43984cd6c16ad1faad4dfb6aac3f53e552dd728c9330c90752e78ae51e4276f" \ | |
"common_benchmark_suite/openxla/benchmark/comparative_suite/jax/scripts/generate_model_artifacts.sh" \ | |
"T5_LARGE_FP32_JAX_512XI32_BATCH1" \ | |
"T5_LARGE_FP32_JAX_512XI32_BATCH16" \ | |
"T5_LARGE_FP32_JAX_512XI32_BATCH24" \ | |
"T5_LARGE_FP32_JAX_512XI32_BATCH32" \ | |
"T5_LARGE_FP32_JAX_512XI32_BATCH48" | |
- name: "Upload JAX model artifacts" | |
run: | | |
gcloud storage cp -r "jax/*" "gs://iree-model-artifacts/jax/" |