diff --git a/documentation/library_guide/onedpl_gsg.rst b/documentation/library_guide/onedpl_gsg.rst index 761b7d677b2..13aea171737 100644 --- a/documentation/library_guide/onedpl_gsg.rst +++ b/documentation/library_guide/onedpl_gsg.rst @@ -35,6 +35,15 @@ page for: Install the `Intel® oneAPI Base Toolkit (Base Kit) `_ to use |onedpl_short|. +Additionally, to use |onedpl_short| and other Base Kit components on non-Intel GPUs install either the +`oneAPI for NVIDIA® GPUs plugin `_ or the +`oneAPI for AMD GPUs plugin `_. + +See the |onedpl_short| +`System Requirements `_ +for details on the compiler support required to compile applications using |onedpl_short| on CPU using OpenMP* or Intel® +oneAPI Threading Building Blocks (oneTBB). + To use Parallel API, include the corresponding header files in your source code. All |onedpl_short| header files are in the ``oneapi/dpl`` directory. Use ``#include `` to include them. @@ -220,4 +229,4 @@ Find More - Add oneAPI components to a Yocto project build using the meta-intel layers. * - `oneAPI Samples Catalog `_ - Explore the complete list of oneAPI code samples in the oneAPI Samples Catalog (GitHub*). - These samples were designed to help you develop, offload, and optimize multiarchitecture applications targeting CPUs, GPUs, and FPGAs. \ No newline at end of file + These samples were designed to help you develop, offload, and optimize multiarchitecture applications targeting CPUs, GPUs, and FPGAs. diff --git a/include/oneapi/dpl/internal/version_impl.h b/include/oneapi/dpl/internal/version_impl.h index 46bd36a7427..38a15e5eecf 100644 --- a/include/oneapi/dpl/internal/version_impl.h +++ b/include/oneapi/dpl/internal/version_impl.h @@ -13,7 +13,7 @@ // The library version #define ONEDPL_VERSION_MAJOR 2022 #define ONEDPL_VERSION_MINOR 7 -#define ONEDPL_VERSION_PATCH 0 +#define ONEDPL_VERSION_PATCH 1 #if _ONEDPL___cplusplus >= 202002L && __has_include() # include // The standard C++20 header diff --git a/test/general/version.pass.cpp b/test/general/version.pass.cpp index 5129435a80d..5f89154155d 100644 --- a/test/general/version.pass.cpp +++ b/test/general/version.pass.cpp @@ -26,7 +26,7 @@ static_assert(_PSTL_VERSION_PATCH == 0); static_assert(ONEDPL_VERSION_MAJOR == 2022); static_assert(ONEDPL_VERSION_MINOR == 7); -static_assert(ONEDPL_VERSION_PATCH == 0); +static_assert(ONEDPL_VERSION_PATCH == 1); #include "support/utils.h"