Merge branch 'es/torch-2.4.0' into es/unstable/flash-3 #89
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: torch-base | |
on: | |
workflow_dispatch: | |
inputs: | |
image-name: | |
required: false | |
description: "Custom name under which to publish the resulting container" | |
type: string | |
image-tag-suffix: | |
required: false | |
description: "Custom tag suffix listing library versions under which to publish the resulting container" | |
type: string | |
push: | |
paths: | |
- "torch/**" | |
- ".github/configurations/torch-base.yml" | |
- ".github/workflows/torch-base.yml" | |
- ".github/workflows/torch.yml" | |
- ".github/workflows/build.yml" | |
jobs: | |
get-config: | |
name: Get torch:base Config | |
uses: ./.github/workflows/read-configuration.yml | |
with: | |
path: ./.github/configurations/torch-base.yml | |
build: | |
name: Build torch:base | |
needs: get-config | |
strategy: | |
matrix: ${{ fromJSON(needs.get-config.outputs.config) }} | |
uses: ./.github/workflows/torch.yml | |
secrets: inherit | |
with: | |
image-name: ${{ inputs.image-name }} | |
tag: ${{ format('{0}-{1}', format('base-cuda{0}-{1}', matrix.cuda, matrix.os), inputs.image-tag-suffix || format('torch{0}-vision{1}-audio{2}', matrix.torch, matrix.vision, matrix.audio)) }} | |
builder-base-image: nvidia/cuda:${{ matrix.cuda }}-devel-${{ matrix.os }} | |
base-image: nvidia/cuda:${{ matrix.cuda }}-base-${{ matrix.os }} | |
torch-version: ${{ matrix.torch }} | |
torchvision-version: ${{ matrix.vision }} | |
torchaudio-version: ${{ matrix.audio }} | |
cache-key: base-cuda${{ matrix.cuda }}-${{ matrix.os }} | |
build-extras: true |