Skip to content

Improve debug kernel generation (#41) #4

Improve debug kernel generation (#41)

Improve debug kernel generation (#41) #4

Workflow file for this run

name: publish
on:
push:
tags:
- "v*"
jobs:
publish-cubecl-common:
uses: tracel-ai/cubecl/.github/workflows/publish-template.yml@main
with:
crate: cubecl-common
secrets: inherit
publish-cubecl-runtime:
uses: tracel-ai/cubecl/.github/workflows/publish-template.yml@main
with:
crate: cubecl-runtime
needs:
- publish-cubecl-common
secrets: inherit
publish-cubecl-macros:
uses: tracel-ai/cubecl/.github/workflows/publish-template.yml@main
with:
crate: cubecl-macros
needs:
- publish-cubecl-common
secrets: inherit
publish-cubecl-core:
uses: tracel-ai/cubecl/.github/workflows/publish-template.yml@main
with:
crate: cubecl-core
needs:
- publish-cubecl-runtime
- publish-cubecl-macros
secrets: inherit
publish-cubecl-linalg:
uses: tracel-ai/cubecl/.github/workflows/publish-template.yml@main
with:
crate: cubecl-linalg
needs:
- publish-cubecl-runtime
- publish-cubecl-core
secrets: inherit
publish-cubecl-wgpu:
uses: tracel-ai/cubecl/.github/workflows/publish-template.yml@main
with:
crate: cubecl-wgpu
needs:
- publish-cubecl-common
- publish-cubecl-runtime
- publish-cubecl-core
- publish-cubecl-linalg
secrets: inherit
publish-cubecl-cuda:
uses: tracel-ai/cubecl/.github/workflows/publish-template.yml@main
with:
crate: cubecl-cuda
needs:
- publish-cubecl-common
- publish-cubecl-runtime
- publish-cubecl-core
- publish-cubecl-linalg
secrets: inherit
publish-cubecl:
uses: tracel-ai/cubecl/.github/workflows/publish-template.yml@main
with:
crate: cubecl
needs:
- publish-cubecl-core
- publish-cubecl-cuda
- publish-cubecl-wgpu
- publish-cubecl-linalg
secrets: inherit