| 51 | > > { |
| 52 | public: |
| 53 | void getParams(TestParams *params) |
| 54 | { |
| 55 | params->order = order; |
| 56 | params->uplo = uplo; |
| 57 | params->seed = seed; |
| 58 | params->N = N; |
| 59 | params->alpha.re = (long)alpha; // This will cast alpha to long. So the real value that is |
| 60 | // passed is not the same as what is set in the test case |
| 61 | params->offBX = offx; |
| 62 | params->incx = incx; |
| 63 | params->offa = offa; |
| 64 | params->lda = lda; |
| 65 | params->numCommandQueues = numCommandQueues; |
| 66 | } |
| 67 | |
| 68 | protected: |
| 69 | virtual void SetUp() |
nothing calls this directly
no outgoing calls
no test coverage detected