This commit is contained in:
Joseph Redmon
2015-05-06 14:08:16 -07:00
parent 372980d690
commit e7688a05a1
8 changed files with 454 additions and 19 deletions

View File

@ -18,6 +18,6 @@ void axpy_ongpu_offset(int N, float ALPHA, float * X, int OFFX, int INCX, float
void copy_ongpu(int N, float * X, int INCX, float * Y, int INCY);
void copy_ongpu_offset(int N, float * X, int OFFX, int INCX, float * Y, int OFFY, int INCY);
void scal_ongpu(int N, float ALPHA, float * X, int INCX);
void mask_ongpu(int N, float * X, float * mask, float mod);
void mask_ongpu(int N, float * X, float * mask);
#endif
#endif