From a4a8d105dbaa0c7f92c5a1ec380b1f49d105c02d Mon Sep 17 00:00:00 2001 From: Maneesh Gupta Date: Mon, 13 Jun 2016 14:23:51 +0530 Subject: [PATCH] hipDispatchLatency: reduce iterations to 5120 Change-Id: I94ae4993ff5058cf15f9487a5a528fc24c1ad5fa [ROCm/hip commit: 506d4086a90d785d1ed3aa608f85f581a5861277] --- .../samples/1_Utils/hipDispatchLatency/hipDispatchLatency.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/hip/samples/1_Utils/hipDispatchLatency/hipDispatchLatency.cpp b/projects/hip/samples/1_Utils/hipDispatchLatency/hipDispatchLatency.cpp index 212fc6b3b1..1c15ab51d7 100644 --- a/projects/hip/samples/1_Utils/hipDispatchLatency/hipDispatchLatency.cpp +++ b/projects/hip/samples/1_Utils/hipDispatchLatency/hipDispatchLatency.cpp @@ -30,7 +30,7 @@ if(status != hipSuccess){ \ #define LEN 1024*1024 #define SIZE LEN * sizeof(float) -#define ITER 10000 +#define ITER 5120 __global__ void One(hipLaunchParm lp, float* Ad){ }