File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
test/conformance/exp_usm_p2p Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -8887,7 +8887,7 @@ urUSMReleaseExp(
8887
8887
#endif
8888
8888
///////////////////////////////////////////////////////////////////////////////
8889
8889
#ifndef UR_USM_P2P_EXTENSION_STRING_EXP
8890
- /// @brief The extension string which defines support for USM P2P which is
8890
+ /// @brief The extension string that defines support for USM P2P which is
8891
8891
/// returned when querying device extensions.
8892
8892
#define UR_USM_P2P_EXTENSION_STRING_EXP "ur_exp_usm_p2p"
8893
8893
#endif // UR_USM_P2P_EXTENSION_STRING_EXP
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ or copying the memory located on a separate "peer" device.
27
27
28
28
Motivation
29
29
--------------------------------------------------------------------------------
30
- Several important projects that programming models such as SYCL or OpenMP aim
31
- to support use fine-grained peer to peer memory access controls.
30
+ Programming models like SYCL or OpenMP aim to support several important
31
+ projects that utilise fine-grained peer-to- peer memory access controls.
32
32
This experimental extension to the Unified-Runtime API aims to provide a
33
33
portable interface that can call appropriate driver functions to query and
34
34
control peer memory access within different adapters such as CUDA, HIP and
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ desc: "Intel $OneApi Unified Runtime Experimental APIs for USM P2P"
13
13
ordinal : " 99"
14
14
--- # --------------------------------------------------------------------------
15
15
type : macro
16
- desc : " The extension string which defines support for USM P2P which is returned when querying device extensions."
16
+ desc : " The extension string that defines support for USM P2P which is returned when querying device extensions."
17
17
name : $X_USM_P2P_EXTENSION_STRING_EXP
18
18
value : " \" $x_exp_usm_p2p\" "
19
19
--- # --------------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ TEST_F(urP2PTest, Success) {
25
25
nullptr ));
26
26
27
27
std::string_view extensions_string (returned_extensions.get ());
28
- bool usm_p2p_support =
28
+ const bool usm_p2p_support =
29
29
extensions_string.find (UR_USM_P2P_EXTENSION_STRING_EXP) !=
30
30
std::string::npos;
31
31
You can’t perform that action at this time.
0 commit comments