| 771 | // testDG |
| 772 | template <typename T> |
| 773 | static void |
| 774 | setElementWithRandomData(T *p, int vectorLength, cl_double bound) |
| 775 | { |
| 776 | for(int k=0; k<vectorLength; k++) |
| 777 | p[k] = random<T>(bound); |
| 778 | } |
| 779 | |
| 780 | template <typename T> |
| 781 | static void |
no outgoing calls
no test coverage detected