MCPcopy Create free account
hub / github.com/clMathLibraries/clBLAS / TrxmPerformanceTest

Method TrxmPerformanceTest

src/tests/performance/TrxmPerformanceTest.cpp:118–129  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

116
117template <typename ElemType>
118TrxmPerformanceTest<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
131template <typename ElemType>
132TrxmPerformanceTest<ElemType>::~TrxmPerformanceTest()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected