Added directory for stress testing

This commit is contained in:
Aditya Atluri
2016-03-31 02:14:12 -05:00
förälder ed17e3489e
incheckning 8d406b68d8
3 ändrade filer med 73 tillägg och 0 borttagningar
+15
Visa fil
@@ -0,0 +1,15 @@
#include"test_common.h"
#define SIZE 1024*1024
int main(){
float *A, *Ad;
HIPCHECK(hipHostMalloc((void**)&A,SIZE, hipHostMallocDefault));
HIPCHECK(hipMalloc((void**)&Ad, SIZE));
hipStream_t stream;
HIPCHECK(hipStreamCreate(&stream));
for(int i=0;i<SIZE;i++){
HIPCHECK(hipMemcpyAsync(Ad, A, SIZE, hipMemcpyHostToDevice, stream));
HIPCHECK(hipDeviceSynchronize());
}
}