![]() |
(git:9aade48)
|
#include <stddef.h>Go to the source code of this file.
Data Structures | |
| struct | offload_buffer |
| Internal representation of a buffer. More... | |
Functions | |
| void | offload_create_buffer (const int length, offload_buffer **buffer) |
| Allocate a buffer (NULL or valid) with the given number of elements. | |
| void | offload_free_buffer (offload_buffer *buffer) |
| Deallocate given buffer. | |
| double * | offload_get_buffer_host_pointer (offload_buffer *buffer) |
| Return a pointer to the host buffer (Fortran API). | |
| void offload_create_buffer | ( | const int | length, |
| offload_buffer ** | buffer | ||
| ) |
Allocate a buffer (NULL or valid) with the given number of elements.
Allocate a buffer (NULL or valid) with the given number of elements.
Definition at line 52 of file offload_buffer.c.
| void offload_free_buffer | ( | offload_buffer * | buffer | ) |
Deallocate given buffer.
Definition at line 102 of file offload_buffer.c.
| double * offload_get_buffer_host_pointer | ( | offload_buffer * | buffer | ) |
Return a pointer to the host buffer (Fortran API).
Return a pointer to the host buffer (Fortran API).
Definition at line 113 of file offload_buffer.c.