[midend/lib/Conversion/ConvVectorization] Add cond2dnhwcfhwc vectoriation pass and poolingnhwcmax vectorization pass #1922
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: test build process | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: self-hosted | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Set up ninja | |
uses: seanmiddleditch/gha-setup-ninja@master | |
- name: Prepare llvm build directory name | |
id: llvm-build-dir | |
run: | | |
echo "commit=$(git submodule status llvm | awk '{print $1;}')" >> $GITHUB_OUTPUT | |
- name: Cache llvm build directory | |
uses: actions/cache@v4 | |
with: | |
path: llvm | |
key: build-${{ steps.llvm-build-dir.outputs.commit }} | |
- name: Test build | |
run: bash ./tests/Actions/TestBuild.sh llvm/build-${{ steps.llvm-build-dir.outputs.commit }} |