From 14a05864a53920799b54854d7ccda96a6e54d996 Mon Sep 17 00:00:00 2001 From: Jaime Arteaga Date: Fri, 11 Aug 2023 12:20:26 -0700 Subject: [PATCH] Remove misplaced statement from urKernelCreate doc Signed-off-by: Jaime Arteaga --- include/ur_api.h | 2 -- scripts/core/kernel.yml | 1 - source/loader/ur_libapi.cpp | 2 -- source/ur_api.cpp | 2 -- 4 files changed, 7 deletions(-) diff --git a/include/ur_api.h b/include/ur_api.h index 7df48cb743..e4ed76fb36 100644 --- a/include/ur_api.h +++ b/include/ur_api.h @@ -4408,8 +4408,6 @@ urProgramCreateWithNativeHandle( /// @brief Create kernel object from a program. /// /// @details -/// - Multiple calls to this function will return identical device handles, -/// in the same order. /// - The application may call this function from simultaneous threads. /// - The implementation of this function should be lock-free. /// diff --git a/scripts/core/kernel.yml b/scripts/core/kernel.yml index 27481f810f..4ce4f9c70a 100644 --- a/scripts/core/kernel.yml +++ b/scripts/core/kernel.yml @@ -19,7 +19,6 @@ name: Create decl: static ordinal: "0" details: - - "Multiple calls to this function will return identical device handles, in the same order." - "The application may call this function from simultaneous threads." - "The implementation of this function should be lock-free." params: diff --git a/source/loader/ur_libapi.cpp b/source/loader/ur_libapi.cpp index 9c7060fdbe..7a64efd088 100644 --- a/source/loader/ur_libapi.cpp +++ b/source/loader/ur_libapi.cpp @@ -3358,8 +3358,6 @@ ur_result_t UR_APICALL urProgramCreateWithNativeHandle( /// @brief Create kernel object from a program. /// /// @details -/// - Multiple calls to this function will return identical device handles, -/// in the same order. /// - The application may call this function from simultaneous threads. /// - The implementation of this function should be lock-free. /// diff --git a/source/ur_api.cpp b/source/ur_api.cpp index 424290d88f..fac4d47c2d 100644 --- a/source/ur_api.cpp +++ b/source/ur_api.cpp @@ -2835,8 +2835,6 @@ ur_result_t UR_APICALL urProgramCreateWithNativeHandle( /// @brief Create kernel object from a program. /// /// @details -/// - Multiple calls to this function will return identical device handles, -/// in the same order. /// - The application may call this function from simultaneous threads. /// - The implementation of this function should be lock-free. ///