use asynchronous MPI functions for overlapping #17
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
# test run on Wisteria (self-hosted) | |
name: CI @ Wisteria | |
on: | |
pull_request: | |
branches: | |
- main | |
types: [opened, synchronize] | |
jobs: | |
CUDA: | |
# memo: runs-on selects host whose every label mathces with the given list | |
runs-on: wisteria | |
steps: | |
- name: Cechkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Update submodules | |
run: git submodule update --remote --recursive | |
- name: Build and Test | |
run: cd wk; ./test_CUDA_wisteria.sh | |
###OPENMP: | |
### # memo: runs-on selects host whose every label mathces with the given list | |
### runs-on: wisteria | |
### steps: | |
### - name: Cechkout code | |
### uses: actions/checkout@v3 | |
### with: | |
### submodules: recursive | |
### - name: Update submodules | |
### run: git submodule update --remote --recursive | |
### - name: Build and Test | |
### run: cd wk; ./test_OPENMP_wisteria.sh |