Skip to content

[Compiler/Runtime/External Libs] Add flash attention external library & pass through mechanism #112

[Compiler/Runtime/External Libs] Add flash attention external library & pass through mechanism

[Compiler/Runtime/External Libs] Add flash attention external library & pass through mechanism #112

Workflow file for this run

name: e2e Numerical test CI
on:
push:
branches:
- main
paths:
- ".github/workflows/e2e_test.yaml"
- "scripts/e2e/build_and_test_e2e.sh"
- "tests/**"
pull_request:
branches:
- main
paths:
- ".github/workflows/e2e_test.yaml"
- "scripts/e2e/build_and_test_e2e.sh"
- "tests/**"
workflow_dispatch:
# Ensure that only a single job or workflow using the same
# concurrency group will run at a time. This would cancel
# any in-progress jobs in the same github workflow and github
# ref (e.g. refs/heads/main or refs/pull/<pr_number>/merge).
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). The workflow name is prepended to avoid conflicts between
# different workflows.
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
cancel-in-progress: true
jobs:
numerical_e2e_test:
name: e2e CI
runs-on: self-hosted
steps:
- name: clear workspace
run: rm -rf $GITHUB_WORKSPACE && mkdir $GITHUB_WORKSPACE
- name: Checkout byteir repo
uses: actions/checkout@v3
- name: Build and test e2e
run: ./scripts/e2e/build_and_test_e2e.sh
shell: bash