20 lines
559 B
C++
20 lines
559 B
C++
#ifndef __AMSCUDA_BINARRRW_HPP__
|
|
#define __AMSCUDA_BINARRRW_HPP__
|
|
|
|
namespace amscuda
|
|
{
|
|
|
|
template<typename T> int fread_ndarray(FILE *fp, cuarray<int32_t> *shape, cuarray<T> *buffer);
|
|
template<typename T> int fwrite_ndarray(FILE *fp, const cuarray<int32_t> *shape, const cuarray<T> *buffer);
|
|
|
|
template<typename T> int fwrite_buffer(FILE *fp, const int N, const T *buffer);
|
|
template<typename T> int fread_buffer(FILE *fp, const int Nmax, const T *buffer);
|
|
|
|
|
|
}; //end namespace amscuda
|
|
|
|
#include <amsculib2/amscuda_binarrrw_impl.hpp>
|
|
|
|
#endif
|
|
|