| 47 | |
| 48 | protected: |
| 49 | virtual void SetUp() |
| 50 | { |
| 51 | offSA = ::std::tr1::get<0>(GetParam()); |
| 52 | offSB = ::std::tr1::get<1>(GetParam()); |
| 53 | offC = ::std::tr1::get<2>(GetParam()); |
| 54 | offS = ::std::tr1::get<3>(GetParam()); |
| 55 | numCommandQueues = ::std::tr1::get<4>(GetParam()); |
| 56 | |
| 57 | base = ::clMath::BlasBase::getInstance(); |
| 58 | |
| 59 | useNumCommandQueues = base->useNumCommandQueues(); |
| 60 | if (useNumCommandQueues) |
| 61 | { |
| 62 | numCommandQueues = base->numCommandQueues(); |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | size_t offSA, offSB, offC, offS; |
| 67 |
nothing calls this directly
no test coverage detected