* Ajout d'un exemple CUDA non-openGL (AddVector.cu)
[GPU.git] / WCudaMSE / Student_Cuda / src / cpp / core / mainCore.cpp
index ad144a1..31af0c5 100755 (executable)
@@ -14,6 +14,7 @@ using std::endl;
  \*-------------------------------------*/
 
 extern bool useHello(void);
+extern bool addVectors();
 
 /*--------------------------------------*\
  |*            Public                  *|
@@ -39,6 +40,7 @@ int mainCore()
     {
     bool isOk = true;
     isOk &= useHello();
+    isOk &= addVectors();
 
     cout << "\nisOK = " << isOk << endl;
     cout << "\nEnd : mainCore" << endl;