Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / Student_OMP / src / cpp / test / unit / 02_Test_Pi / TestPi.h
1 #ifndef TEST_PI_H
2 #define TEST_PI_H
3
4 #include "cpptest.h"
5
6 /*----------------------------------------------------------------------*\
7 |* Declaration *|
8 \*---------------------------------------------------------------------*/
9
10
11 class TestPi: public Test::Suite
12 {
13 public:
14
15 TestPi(void);
16
17 private:
18
19 void testSequentiel(void);
20 void testEntrelacerPromotionTab(void);
21 void testEntrelacerAtomic(void);
22 void testEntrelacerCritical(void);
23 void testCritical(void);
24 void testAtomic(void);
25 void testPromotionTab(void);
26 void testForReduction(void);
27
28 private:
29
30 int n;
31
32 };
33
34 #endif
35
36 /*----------------------------------------------------------------------*\
37 |* End *|
38 \*---------------------------------------------------------------------*/
39