Update experiment instructions. #142
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: CI | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '35 3 * * 2' # once a week on Tuesday | |
jobs: | |
build: | |
name: Build (${{matrix.system}}) | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
include: | |
- system: MPI | |
- system: MPI_OPENMP | |
- system: LEGION | |
- system: PYGION | |
- system: REGENT | |
- system: REALM | |
- system: STARPU | |
hwloc: 1 | |
- system: PARSEC | |
hwloc: 1 | |
- system: HPX | |
- system: CHARM | |
- system: CHAPEL | |
- system: X10 | |
- system: OPENMP | |
- system: SPARK | |
# - system: OMPSS | |
# - system: OMPSS2 | |
# hwloc: 1 | |
- system: SWIFT | |
- system: TENSORFLOW | |
- system: DASK | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- run: ./ci.sh | |
env: | |
SYSTEM: ${{ matrix.system }} | |
TASKBENCH_USE_HWLOC: ${{ matrix.hwloc }} | |
# Global settings: | |
DEBUG: 1 | |
# Legion flags | |
# WARN_AS_ERROR: 1 | |
REALM_SYNTHETIC_CORE_MAP: "" | |
REALM_BACKTRACE: 1 | |
# CC_FLAGS: "-Wno-unused-command-line-argument" | |
# Disable features by default, specify explicit what to use in each build | |
DEFAULT_FEATURES: 0 | |
timeout-minutes: 90 |