Skip to content

Commit

Permalink
mixed precision remove cp fileobj in interpolator_type_eq (#1358)
Browse files Browse the repository at this point in the history
  • Loading branch information
mlee03 authored Aug 31, 2023
1 parent 497ab46 commit 9983ce3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 0 additions & 1 deletion interpolator/interpolator.F90
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,6 @@ subroutine interpolate_type_eq (Out, In)
Out%je = In%je
Out%vertical_indices = In%vertical_indices
Out%climatological_year = In%climatological_year
Out%fileobj = In%fileobj
if (allocated(In%has_level )) Out%has_level = In%has_level
if (allocated(In%field_name )) Out%field_name = In%field_name
if (allocated(In%time_init )) Out%time_init = In%time_init
Expand Down
7 changes: 5 additions & 2 deletions test_fms/interpolator/test_interpolator2.F90
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,11 @@ program test_interpolator2
call test_interpolator(o3)

!> test interpolate_type_eq
write(*,*) '===== test_interpolate_type_eq ====='
call test_interpolate_type_eq()
!! This test has been commented out and will be included
!! in the testing suite once fileobj cp is added into
!! test_interpolate_type_eq
!write(*,*) '===== test_interpolate_type_eq ====='
!call test_interpolate_type_eq()

!> test query_interpolator
write(*,*) '===== test_query_interpolator ====='
Expand Down

0 comments on commit 9983ce3

Please sign in to comment.