init
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
#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
|
||||
|
||||
Reference in New Issue
Block a user