Skip to content

Commit

Permalink
Bump minimum required SYCL versions
Browse files Browse the repository at this point in the history
This is in preparation for transitioning to native device pointers for
backing buffer allocations. The new revisions are known to work with the
patch, but have not been selected for any particular commit (= earlier
revisions may also work).
  • Loading branch information
psalz committed Mar 24, 2023
1 parent 7b66bf5 commit f07289c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_matrix.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"NOTE": "Make sure to keep this in sync with docs/platform-support.md. Also ensure that the 'ubuntu-version' between 'HEAD' and 'latest' builds remains the same.",
"default": [
{ "sycl": "dpcpp", "sycl-version": "3fd08509", "ubuntu-version": "20.04", "platform": "intel", "build-type": "Debug" },
{ "sycl": "dpcpp", "sycl-version": "61e51015", "ubuntu-version": "20.04", "platform": "intel", "build-type": "Debug" },
{ "sycl": "dpcpp", "sycl-version": "latest", "ubuntu-version": "22.04", "platform": "intel", "build-type": "Debug" },
{ "sycl": "dpcpp", "sycl-version": "latest", "ubuntu-version": "22.04", "platform": "intel", "build-type": "Release" },
{ "sycl": "hipsycl", "sycl-version": "7b00e2ef", "ubuntu-version": "20.04", "platform": "nvidia", "build-type": "Debug" },
{ "sycl": "hipsycl", "sycl-version": "24980221", "ubuntu-version": "20.04", "platform": "nvidia", "build-type": "Debug" },
{ "sycl": "hipsycl", "sycl-version": "latest", "ubuntu-version": "22.04", "platform": "nvidia", "build-type": "Debug" },
{ "sycl": "hipsycl", "sycl-version": "latest", "ubuntu-version": "22.04", "platform": "nvidia", "build-type": "Release" }
],
Expand Down
8 changes: 4 additions & 4 deletions docs/platform-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ sidebar_label: Platform Support

The most recent version of Celerity aims to support the following environments:

* hipSYCL ≥ revision [`7b00e2ef`](https://github.com/illuhad/hipSYCL/commit/7b00e2ef), with
* hipSYCL ≥ revision [`24980221`](https://github.com/illuhad/hipSYCL/commit/24980221), with
* Clang ≥ 10.0
* CUDA ≥ 11.0
* on NVIDIA hardware with compute capability ≥ 7.0
* or on CPUs via OpenMP
* DPC++ ≥ revision [`3fd08509`](https://github.com/intel/llvm/commit/3fd08509)
* DPC++ ≥ revision [`61e51015`](https://github.com/intel/llvm/commit/61e51015)
* on Intel hardware

ComputeCpp is currently not supported.
Expand All @@ -26,7 +26,7 @@ Those are:

| SYCL | SYCL version | OS | Build type |
|------------|--------------------------------------------------------------------------------|--------------|----------------|
| DPC++ | [`3fd08509`](https://github.com/intel/llvm/commit/3fd08509) | Ubuntu 20.04 | Debug |
| DPC++ | [`61e51015`](https://github.com/intel/llvm/commit/61e51015) | Ubuntu 20.04 | Debug |
| DPC++ | [`HEAD`](https://github.com/intel/llvm/) | Ubuntu 22.04 | Debug, Release |
| hipSYCL | [`7b00e2ef`](https://github.com/illuhad/hipSYCL/commit/7b00e2ef) (CUDA 11.0.3) | Ubuntu 20.04 | Debug |
| hipSYCL | [`24980221`](https://github.com/illuhad/hipSYCL/commit/24980221) (CUDA 11.0.3) | Ubuntu 20.04 | Debug |
| hipSYCL | [`HEAD`](https://github.com/illuhad/hipSYCL) (CUDA 11.7.0) | Ubuntu 22.04 | Debug, Release |

0 comments on commit f07289c

Please sign in to comment.