EXSWCPHIPT-42 - Add HIP RTC support to the test framework (#2719)

* EXSWCPHIPT-42 - Add HIP RTC support to the test framework
* Removed ifdef from hipTestContext class
Este commit está contenido en:
Fábio
2022-06-13 11:05:02 +01:00
cometido por GitHub
padre 5133509730
commit 604de0f817
Se han modificado 14 ficheros con 569 adiciones y 42 borrados
+6
Ver fichero
@@ -0,0 +1,6 @@
#include <kernels.hh>
__global__ void Set(int* Ad, int val) {
int tx = threadIdx.x + blockIdx.x * blockDim.x;
Ad[tx] = val;
}