Skip to content

Commit 9f9bf0a

Browse files
committed
correct corrupted comments and whitespace on remaining files
1 parent 3853ce9 commit 9f9bf0a

4 files changed

Lines changed: 9 additions & 11 deletions

File tree

src/common/m_mpi_common.fpp

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@ module m_mpi_common
2424
$:GPU_DECLARE(create='[v_size]')
2525

2626
real(wp), private, allocatable, dimension(:) :: buff_send !< Primitive variable send buffer for halo exchange
27-
real(wp), private, allocatable, dimension(:) :: buff_recv !< Primitive variable receive buffer for halo exchange
28-
29-
!! Variables for EL bubbles communication
27+
!> Primitive variable receive buffer for halo exchange Variables for EL bubbles communication
28+
real(wp), private, allocatable, dimension(:) :: buff_recv
3029
type(int_bounds_info) :: comm_coords(3)
3130
integer :: comm_size(3)
3231
!> q_beta indices to communicate: 1=void fraction, 2=d(beta)/dt, 5=energy source
@@ -1316,10 +1315,10 @@ contains
13161315
real(wp) :: tmp_num_procs_x, tmp_num_procs_y, tmp_num_procs_z
13171316
real(wp) :: fct_min !< Processor factorization (fct) minimization parameter
13181317
integer :: MPI_COMM_CART !< Cartesian processor topology communicator
1319-
integer :: rem_cells !< Remaining cells after distribution among processors
1320-
integer :: recon_order !< WENO or MUSCL reconstruction order
1321-
integer :: i, j, k !< Generic loop iterators
1322-
integer :: ierr !< Generic flag used to identify and report MPI errors
1318+
integer :: rem_cells !< Remaining cells after distribution among processors
1319+
integer :: recon_order !< WENO or MUSCL reconstruction order
1320+
integer :: i, j, k !< Generic loop iterators
1321+
integer :: ierr !< Generic flag used to identify and report MPI errors
13231322

13241323
! temp array to store neighbor rank coordinates
13251324
integer, dimension(1:num_dims) :: neighbor_coords

src/pre_process/m_global_parameters.fpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ module m_global_parameters
8989

9090
! Cell indices (InDices With BUFFer): includes buffer except in pre_process
9191
type(int_bounds_info) :: idwbuff(1:3)
92-
9392
integer :: fd_order !< Finite-difference order for CoM/probe derivative approximations
9493
integer :: fd_number !< FD half-stencil size: MAX(1, fd_order/2)
9594

src/simulation/m_bubbles_EL_kernels.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ contains
475475

476476
end subroutine s_get_cell
477477

478-
!> Precompute cell-centered pressure gradients (dp/dx, dp/dy, dp/dz)
478+
!> Precompute cell-centered pressure gradients (dp/dx, dp/dy, dp/dz)
479479
subroutine s_compute_pressure_gradients(q_prim_vf)
480480

481481
type(scalar_field), dimension(sys_size), intent(in) :: q_prim_vf

src/simulation/m_global_parameters.fpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,8 @@ module m_global_parameters
245245

246246
integer, allocatable, dimension(:) :: proc_coords !< Processor coordinates in MPI_CART_COMM
247247
type(bounds_info), allocatable, dimension(:) :: pcomm_coords
248-
type(int_bounds_info), dimension(3) :: nidx !< Indices for neighboring processors
249-
integer, allocatable, dimension(:,:,:) :: neighbor_ranks
248+
type(int_bounds_info), dimension(3) :: nidx !< Indices for neighboring processors
249+
integer, allocatable, dimension(:,:,:) :: neighbor_ranks
250250
$:GPU_DECLARE(create='[pcomm_coords]')
251251

252252
integer, allocatable, dimension(:) :: start_idx !< Starting cell-center index of local processor in global grid

0 commit comments

Comments
 (0)