Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / BilatTools_Cuda_smart_switch / src / test / main.cpp
1 #include <stdlib.h>
2 #include <iostream>
3
4 using std::cout;
5 using std::endl;
6
7 /*----------------------------------------------------------------------*\
8 |* Declaration *|
9 \*---------------------------------------------------------------------*/
10
11
12
13 /*--------------------------------------*\
14 |* Imported *|
15 \*-------------------------------------*/
16
17 extern bool mainCPP();
18 extern bool mainCU();
19
20 /*--------------------------------------*\
21 |* Public *|
22 \*-------------------------------------*/
23
24 /*--------------------------------------*\
25 |* Private *|
26 \*-------------------------------------*/
27
28 /*----------------------------------------------------------------------*\
29 |* Implementation *|
30 \*---------------------------------------------------------------------*/
31
32 /*--------------------------------------*\
33 |* Public *|
34 \*-------------------------------------*/
35
36 int main(void)
37 {
38 cout << "[BilatTools_Cuda_Smart_switch] : just inlcude to force compilation" << endl;
39
40 bool isOk=true;
41
42 isOk&=mainCPP();
43 isOk&=mainCU();
44
45 return isOk?EXIT_SUCCESS:EXIT_FAILURE;
46 }
47
48 /*--------------------------------------*\
49 |* Private *|
50 \*-------------------------------------*/
51
52 /*----------------------------------------------------------------------*\
53 |* End *|
54 \*---------------------------------------------------------------------*/
55