From d68ed457089ef437425479846db8417c38c522bb Mon Sep 17 00:00:00 2001 From: Alex Voicu Date: Thu, 11 Oct 2018 00:03:01 +0100 Subject: [PATCH] Address Aaron's comments [ROCm/hip commit: 3e4dbd32a162697245e4589b6f5c5f2597ef50fb] --- projects/hip/include/hip/hcc_detail/grid_launch.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/hip/include/hip/hcc_detail/grid_launch.h b/projects/hip/include/hip/hcc_detail/grid_launch.h index f91d23341a..61fd9bdbe7 100644 --- a/projects/hip/include/hip/hcc_detail/grid_launch.h +++ b/projects/hip/include/hip/hcc_detail/grid_launch.h @@ -34,11 +34,11 @@ typedef struct grid_launch_parm gl_dim3 grid_dim; //! Group dimensions - gl_dim3 group_dim;; + gl_dim3 group_dim; //! Amount of dynamic group memory to use with the kernel launch. //! This memory is in addition to the amount used statically in the kernel. - unsigned int dynamic_group_mem_bytes;; + unsigned int dynamic_group_mem_bytes; //! Control setting of barrier bit on per-packet basis: //! See gl_barrier_bit description. @@ -56,7 +56,7 @@ typedef struct grid_launch_parm //! If NULL, the default view on the default accelerator is used. hc::accelerator_view *av; - //! Pointe to the completion_future used to track the status of the command. + //! Pointer to the completion_future used to track the status of the command. //! If NULL, the command does not write status. In this case, //! synchronization can be enforced with queue-level waits or //! waiting on younger commands.