Use CUDA graph to fuse kernel launches #2834
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: "build" | |
on: | |
pull_request: | |
paths-ignore: | |
- "include/**" | |
- "inference/**" | |
- "cmake/**" | |
- "config/**" | |
- "deps/**" | |
- "python/**" | |
- "src/**" | |
- ".github/workflows/helpers/install_dependencies.sh" | |
- ".github/workflows/build.yml" | |
workflow_dispatch: | |
concurrency: | |
group: build-skip-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
cmake-build: | |
name: Build FlexFlow with CMake | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
gpu_backend: ["cuda", "hip_rocm"] | |
fail-fast: false | |
steps: | |
- run: 'echo "No build required"' | |
makefile-build: | |
name: Build FlexFlow with the Makefile | |
runs-on: ubuntu-20.04 | |
steps: | |
- run: 'echo "No build required"' |