From 22fd883df8a346542afa38ca90cfc03c1c29bcf4 Mon Sep 17 00:00:00 2001 From: Srinivasuluch Date: Wed, 27 Jun 2018 20:49:07 +0530 Subject: [PATCH] Update hipLaunchParm.cpp --- hipamd/tests/src/kernel/hipLaunchParm.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hipamd/tests/src/kernel/hipLaunchParm.cpp b/hipamd/tests/src/kernel/hipLaunchParm.cpp index fcdcf6dc28..5b53256b23 100644 --- a/hipamd/tests/src/kernel/hipLaunchParm.cpp +++ b/hipamd/tests/src/kernel/hipLaunchParm.cpp @@ -30,14 +30,14 @@ THE SOFTWARE. static const int BLOCK_DIM_SIZE = 1024; -// This test is to verify Struct with variables to check the hipLaunchKernel() support, read and write into the same struct +// This test is to verify Struct with variables to check the hipLaunchKernel() support, read from device. typedef struct hipLaunchKernelStruct1 { int li; // local int float lf; // local float bool result; // local bool } hipLaunchKernelStruct_t1; -// This test is to verify struct with padding, read and write into the same struct +// This test is to verify struct with padding, read from device typedef struct hipLaunchKernelStruct2 { char c1; long l1; @@ -46,7 +46,7 @@ typedef struct hipLaunchKernelStruct2 { bool result; } hipLaunchKernelStruct_t2; -// This test is to verify struct with padding, read and write into the same struct +// This test is to verify struct with padding, read from device typedef struct hipLaunchKernelStruct3 { char bf1; char bf2;