| 23 | using namespace clMath; |
| 24 | |
| 25 | KTest::KTest(Step *step, clMath::Config *cfg) : |
| 26 | platform_(cfg->platform()), device_(cfg->device()), |
| 27 | kernelSourceFile_(cfg->cl()), buildOptions_(cfg->buildOptions()), |
| 28 | matrixGen_(cfg->dataPattern()), |
| 29 | masterStep_(step), indent_(0), useSeveralKernels_(false) |
| 30 | { |
| 31 | } |
| 32 | |
| 33 | KTest::KTest(Step *masterStep, std::vector<Step*> *steps, clMath::Config *cfg) : |
| 34 | platform_(cfg->platform()), device_(cfg->device()), |
nothing calls this directly
no test coverage detected