@@ -621,7 +621,7 @@ urLoaderConfigRetain(
621
621
/// + `NULL == hLoaderConfig`
622
622
UR_APIEXPORT ur_result_t UR_APICALL
623
623
urLoaderConfigRelease(
624
- ur_loader_config_handle_t hLoaderConfig ///< [in] config handle to release
624
+ ur_loader_config_handle_t hLoaderConfig ///< [in][release] config handle to release
625
625
);
626
626
627
627
///////////////////////////////////////////////////////////////////////////////
@@ -844,7 +844,7 @@ urAdapterGet(
844
844
/// + `NULL == hAdapter`
845
845
UR_APIEXPORT ur_result_t UR_APICALL
846
846
urAdapterRelease(
847
- ur_adapter_handle_t hAdapter ///< [in] Adapter handle to release
847
+ ur_adapter_handle_t hAdapter ///< [in][release] Adapter handle to release
848
848
);
849
849
850
850
///////////////////////////////////////////////////////////////////////////////
@@ -1760,7 +1760,7 @@ urDeviceRetain(
1760
1760
/// + `NULL == hDevice`
1761
1761
UR_APIEXPORT ur_result_t UR_APICALL
1762
1762
urDeviceRelease(
1763
- ur_device_handle_t hDevice ///< [in] handle of the device to release.
1763
+ ur_device_handle_t hDevice ///< [in][release] handle of the device to release.
1764
1764
);
1765
1765
1766
1766
///////////////////////////////////////////////////////////////////////////////
@@ -2267,7 +2267,7 @@ typedef enum ur_context_info_t {
2267
2267
/// + `NULL == hContext`
2268
2268
UR_APIEXPORT ur_result_t UR_APICALL
2269
2269
urContextRelease(
2270
- ur_context_handle_t hContext ///< [in] handle of the context to release.
2270
+ ur_context_handle_t hContext ///< [in][release] handle of the context to release.
2271
2271
);
2272
2272
2273
2273
///////////////////////////////////////////////////////////////////////////////
@@ -2753,7 +2753,7 @@ urMemRetain(
2753
2753
/// - ::UR_RESULT_ERROR_OUT_OF_HOST_MEMORY
2754
2754
UR_APIEXPORT ur_result_t UR_APICALL
2755
2755
urMemRelease(
2756
- ur_mem_handle_t hMem ///< [in] handle of the memory object to release
2756
+ ur_mem_handle_t hMem ///< [in][release] handle of the memory object to release
2757
2757
);
2758
2758
2759
2759
///////////////////////////////////////////////////////////////////////////////
@@ -3145,7 +3145,7 @@ urSamplerRetain(
3145
3145
/// - ::UR_RESULT_ERROR_OUT_OF_RESOURCES
3146
3146
UR_APIEXPORT ur_result_t UR_APICALL
3147
3147
urSamplerRelease(
3148
- ur_sampler_handle_t hSampler ///< [in] handle of the sampler object to release
3148
+ ur_sampler_handle_t hSampler ///< [in][release] handle of the sampler object to release
3149
3149
);
3150
3150
3151
3151
///////////////////////////////////////////////////////////////////////////////
@@ -3704,7 +3704,7 @@ urUSMPoolRetain(
3704
3704
/// + `NULL == pPool`
3705
3705
UR_APIEXPORT ur_result_t UR_APICALL
3706
3706
urUSMPoolRelease(
3707
- ur_usm_pool_handle_t pPool ///< [in] pointer to USM memory pool
3707
+ ur_usm_pool_handle_t pPool ///< [in][release] pointer to USM memory pool
3708
3708
);
3709
3709
3710
3710
///////////////////////////////////////////////////////////////////////////////
@@ -4053,7 +4053,7 @@ urPhysicalMemRetain(
4053
4053
/// + `NULL == hPhysicalMem`
4054
4054
UR_APIEXPORT ur_result_t UR_APICALL
4055
4055
urPhysicalMemRelease(
4056
- ur_physical_mem_handle_t hPhysicalMem ///< [in] handle of the physical memory object to release.
4056
+ ur_physical_mem_handle_t hPhysicalMem ///< [in][release] handle of the physical memory object to release.
4057
4057
);
4058
4058
4059
4059
#if !defined(__GNUC__)
@@ -4346,7 +4346,7 @@ urProgramRetain(
4346
4346
/// + `NULL == hProgram`
4347
4347
UR_APIEXPORT ur_result_t UR_APICALL
4348
4348
urProgramRelease(
4349
- ur_program_handle_t hProgram ///< [in] handle for the Program to release
4349
+ ur_program_handle_t hProgram ///< [in][release] handle for the Program to release
4350
4350
);
4351
4351
4352
4352
///////////////////////////////////////////////////////////////////////////////
@@ -4993,7 +4993,7 @@ urKernelRetain(
4993
4993
/// + `NULL == hKernel`
4994
4994
UR_APIEXPORT ur_result_t UR_APICALL
4995
4995
urKernelRelease(
4996
- ur_kernel_handle_t hKernel ///< [in] handle for the Kernel to release
4996
+ ur_kernel_handle_t hKernel ///< [in][release] handle for the Kernel to release
4997
4997
);
4998
4998
4999
4999
///////////////////////////////////////////////////////////////////////////////
@@ -5504,7 +5504,7 @@ urQueueRetain(
5504
5504
/// - ::UR_RESULT_ERROR_OUT_OF_RESOURCES
5505
5505
UR_APIEXPORT ur_result_t UR_APICALL
5506
5506
urQueueRelease(
5507
- ur_queue_handle_t hQueue ///< [in] handle of the queue object to release
5507
+ ur_queue_handle_t hQueue ///< [in][release] handle of the queue object to release
5508
5508
);
5509
5509
5510
5510
///////////////////////////////////////////////////////////////////////////////
@@ -5893,7 +5893,7 @@ urEventRetain(
5893
5893
/// - ::UR_RESULT_ERROR_OUT_OF_HOST_MEMORY
5894
5894
UR_APIEXPORT ur_result_t UR_APICALL
5895
5895
urEventRelease(
5896
- ur_event_handle_t hEvent ///< [in] handle of the event object
5896
+ ur_event_handle_t hEvent ///< [in][release] handle of the event object
5897
5897
);
5898
5898
5899
5899
///////////////////////////////////////////////////////////////////////////////
@@ -7929,7 +7929,7 @@ UR_APIEXPORT ur_result_t UR_APICALL
7929
7929
urBindlessImagesReleaseInteropExp(
7930
7930
ur_context_handle_t hContext, ///< [in] handle of the context object
7931
7931
ur_device_handle_t hDevice, ///< [in] handle of the device object
7932
- ur_exp_interop_mem_handle_t hInteropMem ///< [in] handle of interop memory to be freed
7932
+ ur_exp_interop_mem_handle_t hInteropMem ///< [in][release] handle of interop memory to be freed
7933
7933
);
7934
7934
7935
7935
///////////////////////////////////////////////////////////////////////////////
@@ -8259,7 +8259,7 @@ urCommandBufferRetainExp(
8259
8259
/// - ::UR_RESULT_ERROR_OUT_OF_HOST_MEMORY
8260
8260
UR_APIEXPORT ur_result_t UR_APICALL
8261
8261
urCommandBufferReleaseExp(
8262
- ur_exp_command_buffer_handle_t hCommandBuffer ///< [in] Handle of the command-buffer object.
8262
+ ur_exp_command_buffer_handle_t hCommandBuffer ///< [in][release] Handle of the command-buffer object.
8263
8263
);
8264
8264
8265
8265
///////////////////////////////////////////////////////////////////////////////
@@ -8807,7 +8807,7 @@ urCommandBufferRetainCommandExp(
8807
8807
/// - ::UR_RESULT_ERROR_OUT_OF_HOST_MEMORY
8808
8808
UR_APIEXPORT ur_result_t UR_APICALL
8809
8809
urCommandBufferReleaseCommandExp(
8810
- ur_exp_command_buffer_command_handle_t hCommand ///< [in] Handle of the command-buffer command.
8810
+ ur_exp_command_buffer_command_handle_t hCommand ///< [in][release] Handle of the command-buffer command.
8811
8811
);
8812
8812
8813
8813
///////////////////////////////////////////////////////////////////////////////
0 commit comments