Logo
ApraPipes 1.0
Loading...
Searching...
No Matches
apra_cudamalloc_allocator.h
1#pragma once
2#include <cstddef>
3
5{
6 typedef std::size_t size_type;
7 typedef std::ptrdiff_t difference_type;
8
9 static char *malloc(const size_type bytes);
10 static void free(char *const block);
11};
Definition apra_cudamalloc_allocator.h:5
static void free(char *const block)
std::ptrdiff_t difference_type
Definition apra_cudamalloc_allocator.h:7
static char * malloc(const size_type bytes)
std::size_t size_type
Definition apra_cudamalloc_allocator.h:6