Developer Reference for Intel® oneAPI Math Kernel Library for C
A newer version of this document is available. Customers should click here to go to the newest version.
Visible to Intel only — GUID: GUID-0F5F874C-6EE9-4E26-B3E1-CB5A11B3FDA7
Visible to Intel only — GUID: GUID-0F5F874C-6EE9-4E26-B3E1-CB5A11B3FDA7
mkl_malloc
Allocates an aligned memory buffer.
void* mkl_malloc (size_t alloc_size, int alignment);
- mkl.h
Name |
Type |
Description |
---|---|---|
alloc_size |
size_t |
Size of the buffer to be allocated. |
alignment |
int |
Alignment of the buffer. |
The function allocates an alloc_size-byte buffer aligned on the alignment-byte boundary.
If alignment is not a power of 2, the 64-byte alignment is used.
Name |
Type |
Description |
---|---|---|
a_ptr |
void* |
Pointer to the allocated buffer if alloc_size≥ 1, NULL if alloc_size < 1. |