Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@ jobs:
image: rockylinux:8.7
env-from-files: .github/workflows/dpcpp.env
cmd: |
module load cmake/3.25.3
module load mpi/mpich-x86_64
export CC=clang
export CXX=clang++
scripts/build/linux.sh -DBUILD_GPU_SUPPORT=ON
artifact-out: build-linux
artifact-path: build/install/ospray build/CMakeCache.txt build/*/build/CMakeCache.txt
Expand All @@ -41,7 +37,6 @@ jobs:
secrets: inherit
with:
runs-on: '"vis-perf-x8280-1"'
setup-benny: true
cmd: |
scripts/tests/run-benchmarks.sh
artifact-in: build-linux
Expand All @@ -52,7 +47,6 @@ jobs:
secrets: inherit
with:
runs-on: '"vis-perf-x8380-1"'
setup-benny: true
cmd: |
scripts/tests/run-benchmarks.sh
artifact-in: build-linux
Expand All @@ -63,7 +57,6 @@ jobs:
secrets: inherit
with:
runs-on: '"vis-perf-a3970x-1"'
setup-benny: true
cmd: |
scripts/tests/run-benchmarks.sh
artifact-in: build-linux
Expand All @@ -74,7 +67,6 @@ jobs:
secrets: inherit
with:
runs-on: '"vis-perf-i9-12900k-1"'
setup-benny: true
cmd: |
scripts/tests/run-benchmarks.sh
artifact-in: build-linux
Expand All @@ -88,7 +80,6 @@ jobs:
env-from-files: .github/workflows/gfx-ubuntu22.env
options: --device=/dev/dri:/dev/dri
runs-on: '"vis-perf-dg2-01"'
setup-benny: true
cmd: |
scripts/tests/run-benchmarks.sh GPU
artifact-in: build-linux
Expand All @@ -102,7 +93,6 @@ jobs:
env-from-files: .github/workflows/gfx-ubuntu22.env
options: --device=/dev/dri:/dev/dri
runs-on: '"vis-perf-spr-pvc-01"'
setup-benny: true
cmd: |
scripts/tests/run-benchmarks.sh GPU
artifact-in: build-linux
69 changes: 55 additions & 14 deletions .github/workflows/ci.linux.gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ jobs:
image: ubuntu:22.04
env-from-files: .github/workflows/dpcpp.env
cmd: |
module load cmake/3.25.3
export CC=clang
export CXX=clang++
scripts/build/linux.sh -G Ninja -DBUILD_GLFW=OFF -DBUILD_GPU_SUPPORT=ON -DBUILD_OSPRAY_MODULE_MPI=ON -DBUILD_OSPRAY_MODULE_MULTIDEVICE=ON
artifact-out: build-ubuntu2204-mpi-dpcpp
artifact-path: build/install/ospray build/CMakeCache.txt build/*/build/CMakeCache.txt
Expand All @@ -38,8 +35,10 @@ jobs:
with:
image: ubuntu:22.04
env-from-files: .github/workflows/icx-linux.env .github/workflows/gfx-ubuntu22.env # OIDN AOT needs ocloc
options: --device=/dev/dri:/dev/dri
runs-on: '"dg2"'
cmd: |
module load cmake/3.25.3
unset no_proxy && unset NO_PROXY && apt update -y && apt install -y intel-ocloc # for OIDN AOT
scripts/build/linux.sh -G Ninja -DBUILD_GLFW=OFF -DBUILD_GPU_SUPPORT=ON -DBUILD_OSPRAY_MODULE_MPI=ON -DBUILD_OSPRAY_MODULE_MULTIDEVICE=ON -DBUILD_EMBREE_FROM_SOURCE=ON -DBUILD_OPENVKL_FROM_SOURCE=ON -DBUILD_OIDN_FROM_SOURCE=ON
artifact-out: build-ubuntu2204-mpi-icx
artifact-path: build/install/ospray build/CMakeCache.txt build/*/build/CMakeCache.txt
Expand All @@ -49,10 +48,9 @@ jobs:
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/docker.yml@main
secrets: inherit
with:
image: opensuse/leap:15.3
image: opensuse/leap:15.4
env-from-files: .github/workflows/icx-linux.env
cmd: |
module load cmake/3.25.3
scripts/build/linux.sh -DBUILD_GPU_SUPPORT=ON -DBUILD_EMBREE_FROM_SOURCE=ON -DBUILD_OPENVKL_FROM_SOURCE=ON

rocky8-mpich-dpcpp-build:
Expand All @@ -62,10 +60,7 @@ jobs:
image: rockylinux:8
env-from-files: .github/workflows/dpcpp.env
cmd: |
module load cmake/3.25.3
module load mpi/mpich-x86_64
export CC=clang
export CXX=clang++
export PATH=/usr/lib64/mpich/bin:$PATH
scripts/build/linux.sh -DBUILD_GPU_SUPPORT=ON -DBUILD_OSPRAY_MODULE_MPI=ON -DBUILD_OSPRAY_MODULE_MULTIDEVICE=ON
artifact-out: build-rocky8-mpich-dpcpp
artifact-path: build/install/ospray build/CMakeCache.txt build/*/build/CMakeCache.txt
Expand All @@ -74,6 +69,20 @@ jobs:

### TEST JOBS ###

dpcpp-cpu-ubu22-test:
needs: ubu22-mpi-dpcpp-build
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/docker.yml@main
secrets: inherit
with:
image: ubuntu:22.04
artifact-in: build-ubuntu2204-mpi-dpcpp
artifact-out: test-ubuntu2204-dpcpp-cpu
artifact-path: build_regression_tests/tests*.xml build_regression_tests/failed*
artifact-on-failure: true
cmd: |
export PATH="$GITHUB_WORKSPACE/build/install/ospray/bin:$PATH"
scripts/tests/run_tests.sh "$GITHUB_WORKSPACE"

dpcpp-dg2-ubu22-test:
needs: ubu22-mpi-dpcpp-build
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/docker.yml@main
Expand All @@ -89,7 +98,42 @@ jobs:
artifact-path: build_regression_tests/tests*.xml build_regression_tests/failed*
artifact-on-failure: true
cmd: |
module load cmake/3.25.3
export PATH="$GITHUB_WORKSPACE/build/install/ospray/bin:$PATH"
scripts/tests/run_gpu_tests.sh "$GITHUB_WORKSPACE"

dpcpp-bmg-ubu22-test:
needs: ubu22-mpi-dpcpp-build
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/docker.yml@main
secrets: inherit
with:
timeout-minutes: 100
image: ubuntu:22.04
env-from-files: .github/workflows/gfx-ubuntu22.env
options: --device=/dev/dri:/dev/dri
runs-on: '"bmg"'
artifact-in: build-ubuntu2204-mpi-dpcpp
artifact-out: test-ubuntu2204-dpcpp-bmg
artifact-path: build_regression_tests/tests*.xml build_regression_tests/failed*
artifact-on-failure: true
cmd: |
export PATH="$GITHUB_WORKSPACE/build/install/ospray/bin:$PATH"
scripts/tests/run_gpu_tests.sh "$GITHUB_WORKSPACE"

dpcpp-lnl-ubu22-test:
needs: ubu22-mpi-dpcpp-build
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/docker.yml@main
secrets: inherit
with:
timeout-minutes: 100
image: ubuntu:22.04
env-from-files: .github/workflows/gfx-ubuntu22.env
options: --device=/dev/dri:/dev/dri
runs-on: '"lnl"'
artifact-in: build-ubuntu2204-mpi-dpcpp
artifact-out: test-ubuntu2204-dpcpp-lnl
artifact-path: build_regression_tests/tests*.xml build_regression_tests/failed*
artifact-on-failure: true
cmd: |
export PATH="$GITHUB_WORKSPACE/build/install/ospray/bin:$PATH"
scripts/tests/run_gpu_tests.sh "$GITHUB_WORKSPACE"

Expand All @@ -108,7 +152,6 @@ jobs:
artifact-path: build_regression_tests/tests*.xml build_regression_tests/failed*
artifact-on-failure: true
cmd: |
module load cmake/3.25.3
export PATH="$GITHUB_WORKSPACE/build/install/ospray/bin:$PATH"
scripts/tests/run_gpu_tests.sh "$GITHUB_WORKSPACE"

Expand All @@ -127,7 +170,6 @@ jobs:
artifact-path: build_regression_tests/tests*.xml build_regression_tests/failed*
artifact-on-failure: true
cmd: |
module load cmake/3.25.3
export PATH="$GITHUB_WORKSPACE/build/install/ospray/bin:$PATH"
OMPI_ALLOW_RUN_AS_ROOT=1 OMPI_ALLOW_RUN_AS_ROOT_CONFIRM=1 scripts/tests/run_gpu_tests.sh "$GITHUB_WORKSPACE" SKIP_GPU TEST_MPI

Expand All @@ -146,7 +188,6 @@ jobs:
artifact-path: build_regression_tests/tests*.xml build_regression_tests/failed*
artifact-on-failure: true
cmd: |
module load cmake/3.25.3
export PATH="$GITHUB_WORKSPACE/build/install/ospray/bin:$PATH"
scripts/tests/run_gpu_tests.sh "$GITHUB_WORKSPACE" SKIP_GPU TEST_MULTIDEVICE

Expand Down
34 changes: 13 additions & 21 deletions .github/workflows/ci.linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,8 @@ jobs:
secrets: inherit
with:
image: rockylinux:8
env-from-files: .github/workflows/icx-linux.env
cmd: |
module load cmake
module load intel/2022.1
export CC=icx
export CXX=icpx
export CXXFLAGS="-fhonor-infinities -fhonor-nans"
export CFLAGS=$CXXFLAGS
export LDFLAGS="-static-intel"
Expand All @@ -86,8 +83,7 @@ jobs:
with:
image: rockylinux:8
cmd: |
module load cmake
module load impi/2021.6
export PATH=$STORAGE_PATH/packages/apps/intel/oneAPI/mpi/latest/bin:$PATH
scripts/build/linux.sh -DBUILD_EMBREE_FROM_SOURCE=ON -DBUILD_OPENVKL_FROM_SOURCE=ON -DBUILD_OIDN=OFF -DBUILD_OSPRAY_MODULE_MPI=ON -DBUILD_ISA_AVX512=OFF -DTBB_VERSION=2021.9.0

build-rocky8-mpi-mpich:
Expand All @@ -96,8 +92,7 @@ jobs:
with:
image: rockylinux:8
cmd: |
module load cmake
module load mpi/mpich-x86_64
export PATH=/usr/lib64/mpich/bin:$PATH
scripts/build/linux.sh -DBUILD_EMBREE_FROM_SOURCE=ON -DBUILD_OPENVKL_FROM_SOURCE=ON -DBUILD_OIDN=OFF -DBUILD_OSPRAY_MODULE_MPI=ON -DBUILD_ISA_AVX512=OFF -DTBB_VERSION=2021.9.0
artifact-out: build-rocky8-mpi-mpich
artifact-path: build/install/ospray build/CMakeCache.txt build/*/build/CMakeCache.txt
Expand All @@ -108,8 +103,7 @@ jobs:
with:
image: rockylinux:8
cmd: |
module load cmake
module load mpi/openmpi-x86_64
export PATH=/usr/lib64/openmpi/bin:$PATH
scripts/build/linux.sh -DBUILD_EMBREE_FROM_SOURCE=ON -DBUILD_OPENVKL_FROM_SOURCE=ON -DBUILD_OIDN=OFF -DBUILD_OSPRAY_MODULE_MPI=ON -DBUILD_ISA_AVX512=OFF -DTBB_VERSION=2021.9.0

build-centos8:
Expand All @@ -128,7 +122,7 @@ jobs:
with:
image: centos:8
cmd: |
module load mpi/mpich-x86_64
export PATH=/usr/lib64/mpich/bin:$PATH
scripts/build/linux.sh -DBUILD_OSPRAY_MODULE_MPI=ON

build-centos8-mpi-openmpi:
Expand All @@ -137,7 +131,7 @@ jobs:
with:
image: centos:8
cmd: |
module load mpi/openmpi-x86_64
export PATH=/usr/lib64/openmpi/bin:$PATH
scripts/build/linux.sh -DBUILD_OSPRAY_MODULE_MPI=ON

build-rocky8-oidn-mpi:
Expand All @@ -146,8 +140,7 @@ jobs:
with:
image: rockylinux:8
cmd: |
module load cmake/3.15.2
module load mpi/mpich-x86_64
export PATH=/usr/lib64/mpich/bin:$PATH
scripts/build/linux.sh -DBUILD_OSPRAY_MODULE_MPI=ON
artifact-out: build-rocky8-oidn-mpi
artifact-path: build/install/ospray build/CMakeCache.txt build/*/build/CMakeCache.txt
Expand Down Expand Up @@ -227,8 +220,8 @@ jobs:
with:
image: rockylinux:8
cmd: |
module load cmake
module load mpi/mpich-x86_64
export PATH=/usr/lib64/mpich/bin:$PATH
export LD_LIBRARY_PATH=/usr/lib64/mpich/lib:$LD_LIBRARY_PATH
PATH="$GITHUB_WORKSPACE/build/install/ospray/bin:$PATH" scripts/tests/run_tests.sh "$GITHUB_WORKSPACE" TEST_MPI
artifact-in: build-rocky8-mpi-mpich
artifact-out: test-rocky8-gcc-mpi-mpich-avx2
Expand Down Expand Up @@ -281,8 +274,8 @@ jobs:
image: rockylinux:8
runs-on: '"avx512"'
cmd: |
module load cmake/3.15.2
module load mpi/mpich-x86_64
export PATH=/usr/lib64/mpich/bin:$PATH
export LD_LIBRARY_PATH=/usr/lib64/mpich/lib:$LD_LIBRARY_PATH
export OIDN_DEFAULT_DEVICE=cpu
PATH="$GITHUB_WORKSPACE/build/install/ospray/bin:$PATH" scripts/tests/run_tests.sh "$GITHUB_WORKSPACE" TEST_MPI
artifact-in: build-rocky8-oidn-mpi
Expand All @@ -296,7 +289,6 @@ jobs:
with:
image: centos:8
cmd: |
module load cmake
mkdir buildtut
cd buildtut
cmake -D ospray_DIR=`echo $GITHUB_WORKSPACE/build/install/ospray/lib/cmake/ospray-*` ../apps/ospTutorial/ospTutorialFindospray
Expand Down Expand Up @@ -390,8 +382,8 @@ jobs:
with:
image: rockylinux:8
cmd: |
module load cmake/3.15.2
module load mpi/mpich-x86_64
export PATH=/usr/lib64/mpich/bin:$PATH
export LD_LIBRARY_PATH=/usr/lib64/mpich/lib:$LD_LIBRARY_PATH
scripts/tests/run_tutorials.sh TEST_MPI
artifact-in: build-rocky8-oidn-mpi

Expand Down
55 changes: 51 additions & 4 deletions .github/workflows/ci.windows.gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
with:
runs-on: '["build", "mpi"]'
env-from-files: .github/workflows/dpcpp.env
msvc-version: 2022
cmd: |
$env:SYCL_BUNDLE_ROOT = $env:DPCPP_ROOT
# disable warnings which lead to excessively large log files
Expand All @@ -38,7 +39,8 @@ jobs:
with:
runs-on: '["build", "mpi"]'
env-from-files: .github/workflows/icx-windows.env
ocloc-version: 77a13ae6-6100-4ddc-b069-0086ff44730c/ocloc_win_101.5082
msvc-version: 2022
ocloc-version: oneAPI/ocloc/2025.3
cmd: |
# disable warnings which lead to excessively large log files
$env:CXXFLAGS = '-w'
Expand All @@ -51,7 +53,20 @@ jobs:

### TEST JOBS ###

dpcpp-test:
cpu-dpcpp-test:
needs: dpcpp-build
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/windows.yml@main
secrets: inherit
with:
cmd: |
$env:Path += ";$env:GITHUB_WORKSPACE\build\install\ospray\bin"
scripts\tests\run_tests.ps1 "$env:GITHUB_WORKSPACE"
artifact-in: build-windows-dpcpp
artifact-out: test-windows-dpcpp-cpu
artifact-path: build_regression_tests/tests*.xml build_regression_tests/failed*
artifact-on-failure: true

dg2-dpcpp-test:
needs: dpcpp-build
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/windows.yml@main
secrets: inherit
Expand All @@ -63,7 +78,39 @@ jobs:
$env:Path += ";$env:GITHUB_WORKSPACE\build\install\ospray\bin"
scripts\tests\run_gpu_tests.ps1 "$env:GITHUB_WORKSPACE"
artifact-in: build-windows-dpcpp
artifact-out: test-windows-dpcpp
artifact-out: test-windows-dpcpp-dg2
artifact-path: build_regression_tests/tests*.xml build_regression_tests/failed*
artifact-on-failure: true

bmg-dpcpp-test:
needs: dpcpp-build
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/windows.yml@main
secrets: inherit
with:
timeout-minutes: 100
runs-on: '"bmg"'
env-from-files: .github/workflows/gfx-windows.env
cmd: |
$env:Path += ";$env:GITHUB_WORKSPACE\build\install\ospray\bin"
scripts\tests\run_gpu_tests.ps1 "$env:GITHUB_WORKSPACE"
artifact-in: build-windows-dpcpp
artifact-out: test-windows-dpcpp-bmg
artifact-path: build_regression_tests/tests*.xml build_regression_tests/failed*
artifact-on-failure: true

lnl-dpcpp-test:
needs: dpcpp-build
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/windows.yml@main
secrets: inherit
with:
timeout-minutes: 100
runs-on: '"lnl"'
env-from-files: .github/workflows/gfx-windows.env
cmd: |
$env:Path += ";$env:GITHUB_WORKSPACE\build\install\ospray\bin"
scripts\tests\run_gpu_tests.ps1 "$env:GITHUB_WORKSPACE"
artifact-in: build-windows-dpcpp
artifact-out: test-windows-dpcpp-lnl
artifact-path: build_regression_tests/tests*.xml build_regression_tests/failed*
artifact-on-failure: true

Expand All @@ -90,7 +137,7 @@ jobs:
secrets: inherit
with:
timeout-minutes: 100
runs-on: '"dg2"'
runs-on: '"lnl"'
env-from-files: .github/workflows/icx-windows.env .github/workflows/gfx-windows.env
cmd: |
$env:Path += ";$env:GITHUB_WORKSPACE\build\install\ospray\bin"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dpcpp.env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DPCPP_VERSION=intel-llvm/nightly-2023-10-26-rk
DPCPP_VERSION=intel-llvm/v6.3.0
Loading