@@ -647,7 +647,7 @@ function volume_flux_integral_dgfv_kernel!(du, u, alpha, atol, derivative_split,
647647 @inbounds begin
648648 # Initialize `du` with zeros
649649 shmem_value[tx, ty1, ty2, ty3] = zero (eltype (du))
650- # Initialize `fstar` side columes with zeros
650+ # Initialize `fstar` side columns with zeros
651651 shmem_fstar1[tx, 1 , ty2, ty3] = zero (eltype (du))
652652 shmem_fstar1[tx, tile_width + 1 , ty2, ty3] = zero (eltype (du))
653653 shmem_fstar2[tx, ty1, 1 , ty3] = zero (eltype (du))
@@ -1005,15 +1005,15 @@ function volume_flux_integral_dgfv_kernel!(du, u, alpha, atol, derivative_split,
10051005
10061006 # TODO : Remove shared memory for `fstar` and use local memory
10071007
1008- # Initialize `fstar` side columes with zeros (1: left)
1008+ # Initialize `fstar` side columns with zeros (1: left)
10091009 shmem_fstar1[tx, 1 , ty2, ty3, 1 ] = zero (eltype (du))
10101010 shmem_fstar1[tx, tile_width + 1 , ty2, ty3, 1 ] = zero (eltype (du))
10111011 shmem_fstar2[tx, ty1, 1 , ty3, 1 ] = zero (eltype (du))
10121012 shmem_fstar2[tx, ty1, tile_width + 1 , ty3, 1 ] = zero (eltype (du))
10131013 shmem_fstar3[tx, ty1, ty2, 1 , 1 ] = zero (eltype (du))
10141014 shmem_fstar3[tx, ty1, ty2, tile_width + 1 , 1 ] = zero (eltype (du))
10151015
1016- # Initialize `fstar` side columes with zeros (2: right)
1016+ # Initialize `fstar` side columns with zeros (2: right)
10171017 shmem_fstar1[tx, 1 , ty2, ty3, 2 ] = zero (eltype (du))
10181018 shmem_fstar1[tx, tile_width + 1 , ty2, ty3, 2 ] = zero (eltype (du))
10191019 shmem_fstar2[tx, ty1, 1 , ty3, 2 ] = zero (eltype (du))
0 commit comments