| 116 | |
| 117 | template <typename ElemType> |
| 118 | TrxmPerformanceTest<ElemType>::TrxmPerformanceTest( |
| 119 | BlasFunction fn, |
| 120 | TestParams *params) : PerformanceTest(fn, problemSize(params)), |
| 121 | params_(*params), mobjA_(NULL), mobjB_(NULL) |
| 122 | { |
| 123 | A_ = new ElemType[params_.rowsA * params_.columnsA]; |
| 124 | B_ = new ElemType[params_.rowsB * params_.columnsB]; |
| 125 | backB_ = new ElemType[params_.rowsB * params_.columnsB]; |
| 126 | |
| 127 | base_ = ::clMath::BlasBase::getInstance(); |
| 128 | isTrsm_ = (static_cast<int>(fn) >= FN_STRSM); |
| 129 | } |
| 130 | |
| 131 | template <typename ElemType> |
| 132 | TrxmPerformanceTest<ElemType>::~TrxmPerformanceTest() |
nothing calls this directly
no outgoing calls
no test coverage detected