Vector Optimized Library of Kernels 3.1.1
Architecture-tuned implementations of math kernels
 
Loading...
Searching...
No Matches
binding.h
Go to the documentation of this file.
1#ifndef SSE2NEONBINDING_H
2#define SSE2NEONBINDING_H
3
4#include <stdlib.h>
5
6// The SSE2NEON unit tests run both within our own internal project
7// as well as within the open source framework.
8// This header file is used to abstract any distinctions between
9// those two build environments.
10//
11// Initially, this is for how 16 byte aligned memory is allocated
12namespace SSE2NEON
13{
14void *platformAlignedAlloc(size_t size);
15void platformAlignedFree(void *ptr);
16
17} // namespace SSE2NEON
18
19#endif
Definition: binding.cpp:7
void * platformAlignedAlloc(size_t size)
Definition: binding.cpp:8
void platformAlignedFree(void *ptr)
Definition: binding.cpp:25