LA_library/cuda.h

11 lines
201 B
C
Raw Permalink Normal View History

2010-06-18 11:59:22 +02:00
#ifndef _CUDA_LA_H
#define _CUDA_LA_H
#ifdef CUDA
#define GPU_NOT_IMPLEMENTED {laerror("Operation not implemented on GPU. Use .moveto(0) first.");}
#else
#define GPU_NOT_IMPLEMENTED {}
#endif
#endif