Add conv3d #357
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: sycl | |
on: | |
push: | |
branches: | |
- 'master' | |
tags: | |
- 'v*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
hipsycl-clang14-omp-docker: | |
name: hipsycl-clang14-omp-docker | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: build docker | |
run: | | |
docker build . --tag nmtools:sycl-clang14-omp --file docker/sycl.dockerfile | |
- name: run tests | |
run: | | |
docker run --rm nmtools:sycl-clang14-omp | |
hipsycl-clang14-opencl-docker: | |
name: hipsycl-clang14-opencl-docker | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: build docker | |
run: | | |
docker build . --tag nmtools:sycl-clang14-opencl --build-arg opencl_backend=ON --build-arg toolchain=sycl-clang14-generic --file docker/sycl.dockerfile | |
- name: run tests | |
run: | | |
docker run -e NMTOOLS_SYCL_DEFAULT_PLATFORM=opencl --rm nmtools:sycl-clang14-opencl | |
hipsycl-clang14-cuda-docker: | |
name: hipsycl-clang14-cuda-docker | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: build docker | |
run: | | |
docker build . --tag nmtools:sycl-clang14-cuda --build-arg BASE=nvidia/cuda:11.8.0-devel-ubuntu22.04 --build-arg cuda_backend=ON --build-arg toolchain=sycl-clang14-cuda --file docker/sycl.dockerfile |