Skip to content

Commit

Permalink
Merge branch 'main' into dev/skopienko/optimize_merge_to_main
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeyKopienko committed Dec 10, 2024
2 parents 3089f71 + 8d2717c commit a403991
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
11 changes: 10 additions & 1 deletion documentation/library_guide/onedpl_gsg.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,15 @@ page for:
Install the `Intel® oneAPI Base Toolkit (Base Kit) <https://www.intel.com/content/www/us/en/developer/tools/oneapi/base-toolkit.html>`_
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 <https://developer.codeplay.com/products/oneapi/nvidia/home/>`_ or the
`oneAPI for AMD GPUs plugin <https://developer.codeplay.com/products/oneapi/amd/home/>`_.

See the |onedpl_short|
`System Requirements <https://www.intel.com/content/www/us/en/docs/onedpl/developer-guide/2022-7/intel-oneapi-dpc-library-introduction.html>`_
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 <oneapi/dpl/…>`` to include them.
Expand Down Expand Up @@ -220,4 +229,4 @@ Find More
- Add oneAPI components to a Yocto project build using the meta-intel layers.
* - `oneAPI Samples Catalog <https://oneapi-src.github.io/oneAPI-samples/>`_
- 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.
These samples were designed to help you develop, offload, and optimize multiarchitecture applications targeting CPUs, GPUs, and FPGAs.
2 changes: 1 addition & 1 deletion include/oneapi/dpl/internal/version_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -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(<version>)
# include <version> // The standard C++20 header
Expand Down
2 changes: 1 addition & 1 deletion test/general/version.pass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit a403991

Please sign in to comment.