Skip to content

Commit

Permalink
Satiate spellchecker (#511)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbryngelson authored Jul 6, 2024
1 parent d997e71 commit a6cf118
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ nd = "nd"
iy = "iy"
HPE = "HPE"
alph = "alph"
gam = "gam"
Gam = "Gam"
strang = "strang"
Strang = "Strang"

[files]
extend-exclude = ["docs/documentation/references*", "tests/", "toolchain/cce_simulation_workgroup_256.sh"]
2 changes: 1 addition & 1 deletion src/pre_process/m_grid.f90
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ end subroutine s_generate_abstract_grid
subroutine s_generate_serial_grid

! Generic loop iterator
integer :: i, j !< generic loop operatorss
integer :: i, j !< generic loop operators
real(kind(0d0)) :: length !< domain lengths

! Grid Generation in the x-direction ===============================
Expand Down
6 changes: 3 additions & 3 deletions src/simulation/m_cbc.fpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ module m_cbc
@:CRAY_DECLARE_GLOBAL(real(kind(0d0)), dimension(:, :, :), pi_coef_z)
!$acc declare link(pi_coef_x, pi_coef_y, pi_coef_z)
#else
real(kind(0d0)), allocatable, dimension(:, :, :) :: pi_coef_x !< Polynominal interpolant coefficients in x-dir
real(kind(0d0)), allocatable, dimension(:, :, :) :: pi_coef_y !< Polynominal interpolant coefficients in y-dir
real(kind(0d0)), allocatable, dimension(:, :, :) :: pi_coef_z !< Polynominal interpolant coefficients in z-dir
real(kind(0d0)), allocatable, dimension(:, :, :) :: pi_coef_x !< Polynomial interpolant coefficients in x-dir
real(kind(0d0)), allocatable, dimension(:, :, :) :: pi_coef_y !< Polynomial interpolant coefficients in y-dir
real(kind(0d0)), allocatable, dimension(:, :, :) :: pi_coef_z !< Polynomial interpolant coefficients in z-dir
#endif
!! The first dimension of the array identifies the polynomial, the
!! second dimension identifies the position of its coefficients and the last
Expand Down

0 comments on commit a6cf118

Please sign in to comment.