@@ -117,6 +117,14 @@ class ARCCORE_COLLECTIONS_EXPORT IMemoryAllocator
117
117
*
118
118
* S'il n'y a aucune garantie, retourne 0.
119
119
*/
120
+ virtual size_t guaranteedAlignment (MemoryAllocationArgs args) const ;
121
+
122
+ /* !
123
+ * \brief Valeur de l'alignement garanti par l'allocateur.
124
+ *
125
+ * \sa guaranteedAlignment()
126
+ */
127
+ ARCCORE_DEPRECATED_REASON (" Y2024: Use guaranteedAlignment() instead" )
120
128
virtual size_t guarantedAlignment (MemoryAllocationArgs args) const ;
121
129
122
130
/* !
@@ -140,7 +148,7 @@ class ARCCORE_COLLECTIONS_EXPORT IMemoryAllocator
140
148
virtual void copyMemory (MemoryAllocationArgs args, AllocatedMemoryInfo destination, AllocatedMemoryInfo source);
141
149
142
150
// ! Ressource mémoire fournie par l'allocateur
143
- virtual eMemoryResource memoryRessource () const { return eMemoryResource::Unknown; }
151
+ virtual eMemoryResource memoryResource () const { return eMemoryResource::Unknown; }
144
152
145
153
public:
146
154
@@ -157,7 +165,7 @@ class ARCCORE_COLLECTIONS_EXPORT IMemoryAllocator
157
165
virtual void deallocate (void * ptr) = 0;
158
166
ARCCORE_DEPRECATED_REASON (" Y2023: use adjustedCapacity(MemoryAllocationArgs,Int64,Int64) instead" )
159
167
virtual size_t adjustCapacity (size_t wanted_capacity, size_t element_size) = 0;
160
- ARCCORE_DEPRECATED_REASON (" Y2023: use guarantedAlignment (MemoryAllocationArgs) instead" )
168
+ ARCCORE_DEPRECATED_REASON (" Y2023: use guaranteedAlignment (MemoryAllocationArgs) instead" )
161
169
virtual size_t guarantedAlignment () = 0;
162
170
};
163
171
@@ -278,6 +286,7 @@ class ARCCORE_COLLECTIONS_EXPORT DefaultMemoryAllocator
278
286
void deallocate (void * ptr) override ;
279
287
size_t adjustCapacity (size_t wanted_capacity, size_t element_size) override ;
280
288
size_t guarantedAlignment () override { return 0 ; }
289
+ eMemoryResource memoryResource () const override { return eMemoryResource::Host; }
281
290
};
282
291
283
292
/* ---------------------------------------------------------------------------*/
@@ -313,6 +322,7 @@ class ARCCORE_COLLECTIONS_EXPORT DefaultMemoryAllocator3
313
322
void deallocate (MemoryAllocationArgs, AllocatedMemoryInfo ptr) override ;
314
323
Int64 adjustedCapacity (MemoryAllocationArgs, Int64 wanted_capacity, Int64 element_size) const override ;
315
324
size_t guarantedAlignment (MemoryAllocationArgs) const override { return 0 ; }
325
+ eMemoryResource memoryResource () const override { return eMemoryResource::Host; }
316
326
};
317
327
318
328
/* ---------------------------------------------------------------------------*/
@@ -407,6 +417,7 @@ class ARCCORE_COLLECTIONS_EXPORT AlignedMemoryAllocator
407
417
void deallocate (void * ptr) override ;
408
418
size_t adjustCapacity (size_t wanted_capacity, size_t element_size) override ;
409
419
size_t guarantedAlignment () override { return m_alignment; }
420
+ eMemoryResource memoryResource () const override { return eMemoryResource::Host; }
410
421
411
422
private:
412
423
@@ -494,6 +505,7 @@ class ARCCORE_COLLECTIONS_EXPORT AlignedMemoryAllocator3
494
505
void deallocate (MemoryAllocationArgs args, AllocatedMemoryInfo ptr) override ;
495
506
Int64 adjustedCapacity (MemoryAllocationArgs args, Int64 wanted_capacity, Int64 element_size) const override ;
496
507
size_t guarantedAlignment (MemoryAllocationArgs) const override { return m_alignment; }
508
+ eMemoryResource memoryResource () const override { return eMemoryResource::Host; }
497
509
498
510
private:
499
511
0 commit comments