*** empty log message ***

This commit is contained in:
jiri 2010-06-18 09:59:22 +00:00
parent 70d3fa1428
commit 5dafb68700
1 changed files with 10 additions and 0 deletions

10
cuda.h Normal file
View File

@ -0,0 +1,10 @@
#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