05a7e996480170e035c5003f474979e657b5ddff
[GPU.git] / WCudaMSE / Student_Cuda / src / cpp / core / mainCore.cpp
1 #include <iostream>
2 #include <stdlib.h>
3 using namespace std;
4
5 extern bool useHello();
6 extern bool addVectors();
7 extern bool produitScalaire();
8
9 int mainCore();
10
11 int mainCore()
12 {
13 bool isOk = true;
14 /*isOk &= useHello();
15 isOk &= addVectors();*/
16 isOk &= produitScalaire();
17
18 cout << "\nisOK = " << isOk << endl;
19 cout << "\nEnd : mainCore" << endl;
20
21 return isOk ? EXIT_SUCCESS : EXIT_FAILURE;
22 }
23