![]() |
(git:ec11232)
|
#include "offload_buffer.h"#include "offload_library.h"#include "offload_mempool.h"#include "offload_runtime.h"#include <assert.h>#include <stdio.h>#include <stdlib.h>Go to the source code of this file.
Macros | |
| #define | OFFLOAD_BUFFER_MEMPOOL |
Functions | |
| void | offload_create_buffer (const int length, offload_buffer **buffer) |
| Allocates a buffer of given length, ie., number of elements. | |
| void | offload_free_buffer (offload_buffer *buffer) |
| Deallocate given buffer. | |
| double * | offload_get_buffer_host_pointer (offload_buffer *buffer) |
| Returns a pointer to the host buffer. | |
| #define OFFLOAD_BUFFER_MEMPOOL |
Definition at line 17 of file offload_buffer.c.
| void offload_create_buffer | ( | const int | length, |
| offload_buffer ** | buffer | ||
| ) |
Allocates a buffer of given length, ie., number of elements.
Definition at line 24 of file offload_buffer.c.
| void offload_free_buffer | ( | offload_buffer * | buffer | ) |
Deallocate given buffer.
Definition at line 63 of file offload_buffer.c.
| double * offload_get_buffer_host_pointer | ( | offload_buffer * | buffer | ) |
Returns a pointer to the host buffer.
Definition at line 84 of file offload_buffer.c.