File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -2140,11 +2140,16 @@ pi_result rocm_piextQueueGetNativeHandle(pi_queue queue,
2140
2140
// / \param[in] nativeHandle The native handle to create PI queue object from.
2141
2141
// / \param[in] context is the PI context of the queue.
2142
2142
// / \param[out] queue Set to the PI queue object created from native handle.
2143
+ // / \param ownNativeHandle tells if SYCL RT should assume the ownership of
2144
+ // / the native handle, if it can.
2145
+ // /
2143
2146
// /
2144
2147
// / \return TBD
2145
2148
pi_result rocm_piextQueueCreateWithNativeHandle (pi_native_handle nativeHandle,
2146
2149
pi_context context,
2147
- pi_queue *queue) {
2150
+ pi_queue *queue,
2151
+ bool ownNativeHandle) {
2152
+ (void )ownNativeHandle;
2148
2153
cl::sycl::detail::pi::die (
2149
2154
" Creation of PI queue from native handle not implemented" );
2150
2155
return {};
You can’t perform that action at this time.
0 commit comments