Update readme and changelog

This commit is contained in:
Tom Lin 2023-09-25 01:12:08 +01:00
parent def6dadfd7
commit 29b03be572
2 changed files with 4 additions and 2 deletions

View File

@ -15,6 +15,8 @@ All notable changes to this project will be documented in this file.
- Updates to the HIP kernels and API usage. - Updates to the HIP kernels and API usage.
- Number of thread-blocks in CUDA dot kernel implementation changed to 1024. - Number of thread-blocks in CUDA dot kernel implementation changed to 1024.
- Fix compatibility of `sycl2020` (now `sycl2020-acc`) with hipSYCL. - Fix compatibility of `sycl2020` (now `sycl2020-acc`) with hipSYCL.
- Bumped Julia compat to 1.9
- Bumped Rust to 1.74.0-nightly (13e6f24b9 2023-09-23)
## [v4.0] - 2021-12-22 ## [v4.0] - 2021-12-22

View File

@ -38,7 +38,7 @@ BabelStream is currently implemented in the following parallel programming model
- C++ Parallel STL - C++ Parallel STL
- Kokkos - Kokkos
- RAJA - RAJA
- SYCL and SYCL 2020 - SYCL and SYCL2020 (USM and accessors)
- TBB - TBB
- Thrust (via CUDA or HIP) - Thrust (via CUDA or HIP)
@ -165,7 +165,7 @@ The `MODEL` variant selects one implementation of BabelStream to build.
Currently available models are: Currently available models are:
``` ```
omp;ocl;std;std20;hip;cuda;kokkos;sycl;sycl2020;acc;raja;tbb;thrust omp;ocl;std-data;std-indices;std-ranges;hip;cuda;kokkos;sycl;sycl2020-acc;sycl2020-usm;acc;raja;tbb;thrust
``` ```
### GNU Make ### GNU Make