File tree Expand file tree Collapse file tree 3 files changed +3
-13
lines changed Expand file tree Collapse file tree 3 files changed +3
-13
lines changed Original file line number Diff line number Diff line change @@ -1051,10 +1051,8 @@ class ur_usm_pool_limits_desc_t(Structure):
1051
1051
("stype" , ur_structure_type_t ), ## [in] type of this structure, must be
1052
1052
## ::UR_STRUCTURE_TYPE_USM_POOL_LIMITS_DESC
1053
1053
("pNext" , c_void_p ), ## [in][optional] pointer to extension-specific structure
1054
- ("maxPoolSize" , c_size_t ), ## [in] Maximum size of a memory pool
1055
1054
("maxPoolableSize" , c_size_t ), ## [in] Allocations up to this limit will be subject to pooling
1056
- ("capacity" , c_size_t ), ## [in] When pooling, each bucket will hold a max of 4 unfreed slabs
1057
- ("slabMinSize" , c_size_t ) ## [in] Minimum allocation size that will be requested from the driver
1055
+ ("minDriverAllocSize" , c_size_t ) ## [in] Minimum allocation size that will be requested from the driver
1058
1056
]
1059
1057
1060
1058
###############################################################################
Original file line number Diff line number Diff line change @@ -2257,10 +2257,8 @@ typedef struct ur_usm_pool_limits_desc_t {
2257
2257
ur_structure_type_t stype ; ///< [in] type of this structure, must be
2258
2258
///< ::UR_STRUCTURE_TYPE_USM_POOL_LIMITS_DESC
2259
2259
const void * pNext ; ///< [in][optional] pointer to extension-specific structure
2260
- size_t maxPoolSize ; ///< [in] Maximum size of a memory pool
2261
2260
size_t maxPoolableSize ; ///< [in] Allocations up to this limit will be subject to pooling
2262
- size_t capacity ; ///< [in] When pooling, each bucket will hold a max of 4 unfreed slabs
2263
- size_t slabMinSize ; ///< [in] Minimum allocation size that will be requested from the driver
2261
+ size_t minDriverAllocSize ; ///< [in] Minimum allocation size that will be requested from the driver
2264
2262
2265
2263
} ur_usm_pool_limits_desc_t ;
2266
2264
Original file line number Diff line number Diff line change @@ -170,17 +170,11 @@ class: $xUSM
170
170
name : $x_usm_pool_limits_desc_t
171
171
base : $x_base_desc_t
172
172
members :
173
- - type : " size_t"
174
- name : maxPoolSize
175
- desc : " [in] Maximum size of a memory pool"
176
173
- type : " size_t"
177
174
name : maxPoolableSize
178
175
desc : " [in] Allocations up to this limit will be subject to pooling"
179
176
- type : " size_t"
180
- name : capacity
181
- desc : " [in] When pooling, each bucket will hold a max of 4 unfreed slabs"
182
- - type : " size_t"
183
- name : slabMinSize
177
+ name : minDriverAllocSize
184
178
desc : " [in] Minimum allocation size that will be requested from the driver"
185
179
--- # --------------------------------------------------------------------------
186
180
type : function
You can’t perform that action at this time.
0 commit comments