@@ -252,7 +252,6 @@ typedef enum ur_structure_type_t {
252
252
UR_STRUCTURE_TYPE_SAMPLER_NATIVE_PROPERTIES = 24 , ///< ::ur_sampler_native_properties_t
253
253
UR_STRUCTURE_TYPE_QUEUE_NATIVE_DESC = 25 , ///< ::ur_queue_native_desc_t
254
254
UR_STRUCTURE_TYPE_DEVICE_PARTITION_PROPERTIES = 26 , ///< ::ur_device_partition_properties_t
255
- UR_STRUCTURE_TYPE_MEM_OBJ_PROPERTIES = 27 , ///< ::ur_mem_obj_properties_t
256
255
/// @cond
257
256
UR_STRUCTURE_TYPE_FORCE_UINT32 = 0x7fffffff
258
257
/// @endcond
@@ -3838,15 +3837,6 @@ urKernelSetArgSampler(
3838
3837
ur_sampler_handle_t hArgValue ///< [in] handle of Sampler object.
3839
3838
);
3840
3839
3841
- ///////////////////////////////////////////////////////////////////////////////
3842
- /// @brief Memory object properties
3843
- typedef struct ur_mem_obj_properties_t {
3844
- ur_structure_type_t stype ; ///< [in] type of this structure, must be
3845
- ///< ::UR_STRUCTURE_TYPE_MEM_OBJ_PROPERTIES
3846
- void * pNext ; ///< [in,out][optional] pointer to extension-specific structure
3847
- ur_mem_flags_t memory_access ; ///< [in] Memory access flag. Allowed values are: UR_MEM_FLAG_READ_WRITE, UR_MEM_FLAG_WRITE_ONLY, UR_MEM_FLAG_READ_ONLY.
3848
- } ur_mem_obj_properties_t ;
3849
-
3850
3840
///////////////////////////////////////////////////////////////////////////////
3851
3841
/// @brief Set a Memory object as the argument value of a Kernel.
3852
3842
///
@@ -3866,8 +3856,7 @@ UR_APIEXPORT ur_result_t UR_APICALL
3866
3856
urKernelSetArgMemObj (
3867
3857
ur_kernel_handle_t hKernel , ///< [in] handle of the kernel object
3868
3858
uint32_t argIndex , ///< [in] argument index in range [0, num args - 1]
3869
- ur_mem_handle_t hArgValue , ///< [in][optional] handle of Memory object.
3870
- const ur_mem_obj_properties_t * pProperties ///< [in][optional] pointer to memory object usage properties.
3859
+ ur_mem_handle_t hArgValue ///< [in][optional] handle of Memory object.
3871
3860
);
3872
3861
3873
3862
///////////////////////////////////////////////////////////////////////////////
@@ -6472,7 +6461,6 @@ typedef struct ur_kernel_set_arg_mem_obj_params_t {
6472
6461
ur_kernel_handle_t * phKernel ;
6473
6462
uint32_t * pargIndex ;
6474
6463
ur_mem_handle_t * phArgValue ;
6475
- const ur_mem_obj_properties_t * pProperties ;
6476
6464
} ur_kernel_set_arg_mem_obj_params_t ;
6477
6465
6478
6466
///////////////////////////////////////////////////////////////////////////////
0 commit comments