GGL update, add while 0 guard for hipLaunchKernel API

Change-Id: Ie48ef8ca2ab5e26a51febfcd92417902c33fbf66
This commit is contained in:
Sun, Peng
2017-04-06 10:48:11 -05:00
parent 6dff2714e9
commit ad18bf3b29
+11 -10
Vedi File
@@ -841,15 +841,16 @@ namespace hip_impl
group_mem_bytes,\
stream,\
...)\
{\
hipLaunchKernelGGL(\
kernel_name,\
num_blocks,\
dim_blocks,\
group_mem_bytes,\
stream,\
hipLaunchParm{},\
##__VA_ARGS__);\
}
do {\
hipLaunchKernelGGL(\
kernel_name,\
num_blocks,\
dim_blocks,\
group_mem_bytes,\
stream,\
hipLaunchParm{},\
##__VA_ARGS__);\
} while(0)
}
#endif //GENERIC_GRID_LAUNCH