You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix -Wmissing-template-arg-list-after-template-kw compilation errors in nbody and fluid demos.
* Fix sycl-ls regex in ConfigureSYCL.cmake following the removal of "ext_oneapi" from backend names.
* Update ConfigureSYCL.cmake default CUDA and HIP arch to the oldest supported by oneAPI 2025.0.
* Improve OpenMP CMake test in matrix_multiply_omp_compare sample. Previously it assumed all clang++ drivers support -fopenmp. This is only true in the oneAPI base toolkit version, but the open-source DPC++ nightly releases are built without libomp.so and linking with -fopenmp fails. Use try_compile to figure out if -fopenmp works.
* Add a warning suppresion file to suppress CI build failures in external code from submodules.
* Update the CI container with newer versions of CUDA and ROCm, and use a recent DPC++ open-source nightly instead of a oneAPI Toolkit release.
* Restore CI workflow's permission to push containers to registry.
* Do not push to registry in pull-request CI (not allowed in GitHub). Instead, push the image to a local registry and use that to build the code. Push to registry only in CI triggered by branch push.
if [[ "${{steps.changes.outputs.container}}" == "false" || "${{github.event_name}}" == "push" ]]; then IMAGE_TAG=${{steps.meta.outputs.tags}}; else IMAGE_TAG=localhost:5000/sycl-samples:local; fi
101
+
docker run -v${{github.workspace}}:/work ${IMAGE_TAG} ${{env.BUILD_TYPE}}
0 commit comments