memutils.h File Reference
Include dependency graph for memutils.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Functions | |
template<class T > | |
FARSA_NNFW_TEMPLATE void | memoryCopy (T *dest, const T *src, unsigned int size) |
template for memory copy of data | |
FARSA_NNFW_TEMPLATE void | memoryCopy (float *dest, const float *src, unsigned int size) |
specialization of memoryCopy for float data | |
FARSA_NNFW_TEMPLATE void | memoryCopy (double *dest, const double *src, unsigned int size) |
specialization of memoryCopy for double data | |
FARSA_NNFW_TEMPLATE void | memoryCopy (bool *dest, const bool *src, unsigned int size) |
specialization of memoryCopy for bool data | |
template<class T > | |
FARSA_NNFW_TEMPLATE void | memoryZeroing (T *data, unsigned int size) |
template for memory zeroing of data | |
FARSA_NNFW_TEMPLATE void | memoryZeroing (float *data, unsigned int size) |
specialization of memoryZeroing for float data | |
FARSA_NNFW_TEMPLATE void | memoryZeroing (double *data, unsigned int size) |
specialization of memoryZeroing for double data | |
FARSA_NNFW_TEMPLATE void | memoryZeroing (bool *data, unsigned int size) |
specialization of memoryZeroing for bool data | |