|
|
@ -12,13 +12,17 @@ protected: |
|
|
|
cl::Context* context; |
|
|
|
cl::CommandQueue* queue; |
|
|
|
cl::Program* program; |
|
|
|
std::string name; |
|
|
|
public: |
|
|
|
virtual void dewIt(int n, int m, float* y, const float* A, const float* x, const float* b) = 0; |
|
|
|
virtual cl_ulong dewIt(int n, int m, float* y, const float* A, const float* x, const float* b) = 0; |
|
|
|
std::string getName() { |
|
|
|
return name; |
|
|
|
} |
|
|
|
}; |
|
|
|
|
|
|
|
class Jacobi : public TestCase { |
|
|
|
private: |
|
|
|
const int Jn = 8; |
|
|
|
int Jn; |
|
|
|
// CPU
|
|
|
|
float* Jx_c[2] = { NULL, NULL }; |
|
|
|
float* JA_c = NULL; |
|
|
@ -35,7 +39,7 @@ private: |
|
|
|
void printMatrix(int n, int m, float* A); |
|
|
|
MatrixVectorMultiplier* MethodFactory(MVType type, cl::Context* context, cl::CommandQueue* queue, cl::Program* program); |
|
|
|
public: |
|
|
|
Jacobi(MVType type); |
|
|
|
Jacobi(int n, MVType type); |
|
|
|
void collect_results(cl::CommandQueue* queue); |
|
|
|
void gpu_compute(cl::Context* context, cl::CommandQueue* queue, cl::Program* program, cl::Event* Event); |
|
|
|
void cpu_compute(); |
|
|
@ -61,17 +65,17 @@ public: |
|
|
|
class Simple : public MatrixVectorMultiplier { |
|
|
|
public: |
|
|
|
Simple(cl::Context* context, cl::CommandQueue* queue, cl::Program* program); |
|
|
|
void dewIt(int n, int m, float* y, const float* A, const float* x, const float* b); |
|
|
|
cl_ulong dewIt(int n, int m, float* y, const float* A, const float* x, const float* b); |
|
|
|
}; |
|
|
|
|
|
|
|
class Reduce : public MatrixVectorMultiplier { |
|
|
|
public: |
|
|
|
Reduce(cl::Context* context, cl::CommandQueue* queue, cl::Program* program); |
|
|
|
void dewIt(int n, int m, float* y, const float* A, const float* x, const float* b); |
|
|
|
cl_ulong dewIt(int n, int m, float* y, const float* A, const float* x, const float* b); |
|
|
|
}; |
|
|
|
|
|
|
|
class Large : public MatrixVectorMultiplier { |
|
|
|
public: |
|
|
|
Large(cl::Context* context, cl::CommandQueue* queue, cl::Program* program); |
|
|
|
void dewIt(int n, int m, float* y, const float* A, const float* x, const float* b); |
|
|
|
cl_ulong dewIt(int n, int m, float* y, const float* A, const float* x, const float* b); |
|
|
|
}; |