cupy.cuda.set_allocator#

cupy.cuda.set_allocator(allocator=None)#

Sets the current allocator for GPU memory.

Parameters

allocator (function) – CuPy memory allocator. It must have the same interface as the cupy.cuda.alloc() function, which takes the buffer size as an argument and returns the device buffer of that size. When None is specified, raw memory allocator will be used (i.e., memory pool is disabled).