| 42 | void runIn(); |
| 43 | }; |
| 44 | template <typename T> bool |
| 45 | EventClass<T>::generateData() |
| 46 | { |
| 47 | metod.generateData(); |
| 48 | bool ret =metod.prepareDataToRun(); |
| 49 | if (!ret) { |
| 50 | ::std::cerr << ">> Failed to create/enqueue buffer for a matrix." |
| 51 | << ::std::endl |
| 52 | << ">> Can't execute the test, because data is not transfered to GPU." |
| 53 | << ::std::endl |
| 54 | << ">> Test skipped." << ::std::endl; |
| 55 | SUCCEED(); |
| 56 | } |
| 57 | return ret; |
| 58 | } |
| 59 | |
| 60 | template <typename M> void |
| 61 | EventClass<M>::runOut() |
nothing calls this directly
no test coverage detected