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