GGL update, add while 0 guard for hipLaunchKernel API

Change-Id: Ie48ef8ca2ab5e26a51febfcd92417902c33fbf66
このコミットが含まれているのは:
Sun, Peng
2017-04-06 10:48:11 -05:00
コミット ad18bf3b29
+11 -10
ファイルの表示
@@ -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