memutils.h File Reference
Include dependency graph for memutils.h:
Go to the source code of this file.
Namespaces | |
farsa | |
Functions | |
template<class T > | |
FARSA_NNFW_TEMPLATE void | memoryCopy (T *dest, const T *src, unsigned int size) |
template for memory copy of data More... | |
FARSA_NNFW_TEMPLATE void | memoryCopy (float *dest, const float *src, unsigned int size) |
specialization of memoryCopy for float data More... | |
FARSA_NNFW_TEMPLATE void | memoryCopy (double *dest, const double *src, unsigned int size) |
specialization of memoryCopy for double data More... | |
FARSA_NNFW_TEMPLATE void | memoryCopy (bool *dest, const bool *src, unsigned int size) |
specialization of memoryCopy for bool data More... | |
template<class T > | |
FARSA_NNFW_TEMPLATE void | memoryZeroing (T *data, unsigned int size) |
template for memory zeroing of data More... | |
FARSA_NNFW_TEMPLATE void | memoryZeroing (float *data, unsigned int size) |
specialization of memoryZeroing for float data More... | |
FARSA_NNFW_TEMPLATE void | memoryZeroing (double *data, unsigned int size) |
specialization of memoryZeroing for double data More... | |
FARSA_NNFW_TEMPLATE void | memoryZeroing (bool *data, unsigned int size) |
specialization of memoryZeroing for bool data More... | |