act_size -> actual_size

This commit is contained in:
slaren 2023-12-24 12:26:35 +01:00
parent 3ad45fc3a8
commit 532cb9b99c

View file

@ -6758,12 +6758,12 @@ static void ggml_cuda_pool_free(void * ptr, size_t size) {
template<typename T> template<typename T>
struct cuda_pool_alloc { struct cuda_pool_alloc {
T * ptr = nullptr; T * ptr = nullptr;
size_t act_size = 0; size_t actual_size = 0;
// size is in number of elements // size is in number of elements
T * alloc(size_t size) { T * alloc(size_t size) {
GGML_ASSERT(ptr == nullptr); GGML_ASSERT(ptr == nullptr);
ptr = (T *) ggml_cuda_pool_malloc(size * sizeof(T), &this->act_size); ptr = (T *) ggml_cuda_pool_malloc(size * sizeof(T), &this->actual_size);
return ptr; return ptr;
} }
@ -6773,7 +6773,7 @@ struct cuda_pool_alloc {
~cuda_pool_alloc() { ~cuda_pool_alloc() {
if (ptr != nullptr) { if (ptr != nullptr) {
ggml_cuda_pool_free(ptr, act_size); ggml_cuda_pool_free(ptr, actual_size);
} }
} }