X-Git-Url: http://git.euphorik.ch/?a=blobdiff_plain;f=WCudaMSE%2FStudent_Cuda%2Fsrc%2Fcpp%2Fcore%2FmainCore.cpp;h=2b24911b61c89cd5de5e5f793abc8eaa32844106;hb=ee885ed84f2ff3d5fb1e7ac41fa3c8879314ee36;hp=ad144a19695f1a0522eb330c007d2484be9abf27;hpb=8d08c12b29c2a14684f35c023ee39e694bb80d25;p=GPU.git diff --git a/WCudaMSE/Student_Cuda/src/cpp/core/mainCore.cpp b/WCudaMSE/Student_Cuda/src/cpp/core/mainCore.cpp index ad144a1..2b24911 100755 --- a/WCudaMSE/Student_Cuda/src/cpp/core/mainCore.cpp +++ b/WCudaMSE/Student_Cuda/src/cpp/core/mainCore.cpp @@ -1,44 +1,22 @@ #include #include +using namespace std; +#include "01c_Saucisson/Saucisson.h" +#include "02_ProduitScalaire/ProduitScalaire.h" +#include "03_Histogramme/Histogramme.h" -using std::cout; -using std::endl; - -/*----------------------------------------------------------------------*\ - |* Declaration *| - \*---------------------------------------------------------------------*/ - -/*--------------------------------------*\ - |* Imported *| - \*-------------------------------------*/ - -extern bool useHello(void); - -/*--------------------------------------*\ - |* Public *| - \*-------------------------------------*/ - -int mainCore(); - -/*--------------------------------------*\ - |* Private *| - \*-------------------------------------*/ - - - -/*----------------------------------------------------------------------*\ - |* Implementation *| - \*---------------------------------------------------------------------*/ - -/*--------------------------------------*\ - |* Public *| - \*-------------------------------------*/ +extern bool useHello(); +extern bool addVectors(); int mainCore() { bool isOk = true; - isOk &= useHello(); + //isOk &= useHello(); + //isOk &= addVectors(); + //isOk &= produitScalaire(); + //isOk &= saucisson(); + //isOk &= histogramme(); cout << "\nisOK = " << isOk << endl; cout << "\nEnd : mainCore" << endl; @@ -46,13 +24,3 @@ int mainCore() return isOk ? EXIT_SUCCESS : EXIT_FAILURE; } -/*--------------------------------------*\ - |* Private *| - \*-------------------------------------*/ - - - -/*----------------------------------------------------------------------*\ - |* End *| - \*---------------------------------------------------------------------*/ -