Skip to content

Commit

Permalink
Backport minor fix (#262)
Browse files Browse the repository at this point in the history
Fix subroutine intent, mark corresponding CI as no longer experimental
  • Loading branch information
skosukhin authored Jan 30, 2024
1 parent 1949a8a commit 37a6558
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,6 @@ jobs:
include:
# The tests are not experimental by default:
- experimental: false
- config-name: nag-cpu-accel-DP
experimental: true
#- config-name: nag-cpu-accel-SP
# experimental: true
steps:
#
# Build, run and check (fetch the log)
Expand Down
2 changes: 1 addition & 1 deletion rte-kernels/accel/mo_rte_solver_kernels.F90
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,7 @@ subroutine lw_transport_noscat_up(ncol, nlay, ngpt, &
logical(wl), intent(in ) :: top_at_1 !
real(wp), dimension(ncol,nlay ,ngpt), intent(in ) :: trans ! transmissivity = exp(-tau)
real(wp), dimension(ncol,nlay ,ngpt), intent(in ) :: source_up ! Diffuse radiation emitted by the layer
real(wp), dimension(ncol,nlay+1,ngpt), intent( out) :: radn_up ! Radiances [W/m2-str]
real(wp), dimension(ncol,nlay+1,ngpt), intent(inout) :: radn_up ! Radiances [W/m2-str]
logical(wl), intent(in ) :: do_Jacobians
real(wp), dimension(ncol,nlay+1,ngpt), intent(inout) :: radn_upJac ! surface temperature Jacobian of Radiances [W/m2-str / K]
! Local variables
Expand Down

0 comments on commit 37a6558

Please sign in to comment.