AnimatLab  2
Test
gpu.h
1 /*
2  Copyright (c) 2007 A. Arnold and J. A. van Meel, FOM institute
3  AMOLF, Amsterdam; all rights reserved unless otherwise stated.
4 
5  This program is free software; you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published by
7  the Free Software Foundation; either version 2 of the License, or
8  (at your option) any later version.
9 
10  In addition to the regulations of the GNU General Public License,
11  publications and communications based in parts on this program or on
12  parts of this program are required to cite the article
13  "Harvesting graphics power for MD simulations"
14  by J.A. van Meel, A. Arnold, D. Frenkel, S. F. Portegies Zwart and
15  R. G. Belleman, arXiv:0709.3225.
16 
17  This program is distributed in the hope that it will be useful, but
18  WITHOUT ANY WARRANTY; without even the implied warranty of
19  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20  General Public License for more details.
21 
22  You should have received a copy of the GNU General Public License
23  along with this program; if not, write to the Free Software
24  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25  MA 02111-1307 USA
26 */
27 #ifndef _GPU_H_
28 #define _GPU_H_
29 #include <cstdio>
30 #include <cstring>
31 
32 
33 //#if __CUDA3__
34 // // includes, library
35 // #include "cudpp/cudpp.h"
36 //
37 // // includes, project
38 // #include "cutil_inline.h"
39 // #include "cutil_math.h"
40 //#elif __CUDA5__
41  #include <helper_cuda.h>
42 //#endif
43 
44 #include "CUDAVersionControl.h"
45 
47 void GPU_init();
48 
49 #endif