diff --git a/include/ur_api.h b/include/ur_api.h index 1504c0b1b2..cf5917c79f 100644 --- a/include/ur_api.h +++ b/include/ur_api.h @@ -4011,6 +4011,9 @@ urProgramCreateWithIL( /// /// @details /// - The application may call this function from simultaneous threads. +/// - Following a successful call to this entry point hProgram will contain +/// a binary of the UR_PROGRAM_BINARY_TYPE_COMPILED_OBJECT type for +/// `hDevice`. /// /// @remarks /// _Analogues_ diff --git a/scripts/core/program.yml b/scripts/core/program.yml index acab24c3bd..06a9f3743b 100644 --- a/scripts/core/program.yml +++ b/scripts/core/program.yml @@ -127,6 +127,7 @@ analogue: - "**clCreateProgramWithBinary**" details: - "The application may call this function from simultaneous threads." + - "Following a successful call to this entry point hProgram will contain a binary of the UR_PROGRAM_BINARY_TYPE_COMPILED_OBJECT type for `hDevice`." params: - type: $x_context_handle_t name: hContext diff --git a/source/loader/ur_libapi.cpp b/source/loader/ur_libapi.cpp index 374f193902..2f31edef49 100644 --- a/source/loader/ur_libapi.cpp +++ b/source/loader/ur_libapi.cpp @@ -2882,6 +2882,9 @@ ur_result_t UR_APICALL urProgramCreateWithIL( /// /// @details /// - The application may call this function from simultaneous threads. +/// - Following a successful call to this entry point hProgram will contain +/// a binary of the UR_PROGRAM_BINARY_TYPE_COMPILED_OBJECT type for +/// `hDevice`. /// /// @remarks /// _Analogues_ diff --git a/source/ur_api.cpp b/source/ur_api.cpp index d465a83cfa..ac06e626c5 100644 --- a/source/ur_api.cpp +++ b/source/ur_api.cpp @@ -2447,6 +2447,9 @@ ur_result_t UR_APICALL urProgramCreateWithIL( /// /// @details /// - The application may call this function from simultaneous threads. +/// - Following a successful call to this entry point hProgram will contain +/// a binary of the UR_PROGRAM_BINARY_TYPE_COMPILED_OBJECT type for +/// `hDevice`. /// /// @remarks /// _Analogues_