You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SENA-shallow-water/build/src/fortran/serialbox_pp/module_shallow_water_model.f90:341:74:
341 | call fs_read_field(ppser_serializer_ref, ppser_savepoint, 'b', this%b)
| 1
Error: There is no specific subroutine for the generic 'fs_read_field' at (1)
Displays when trying to Serialize data as part of a Fortran class - class(shallow_water_model_type), intent( in) :: this.
As well as when trying to serialize data passed as Fortran subroutine arguments declared intent(in)
SENA-shallow-water/build/src/fortran/serialbox_pp/module_shallow_water_model.f90:344:73:
344 | call fs_read_field(ppser_serializer_ref, ppser_savepoint, 'xps', xps)
| 1
Error: There is no specific subroutine for the generic 'fs_read_field' at (1)
Steps to Reproduce:
clone SENA-shallow-water repository
Insert Serialbox directives into subroutines adv_nsteps_model, update_interior_model, or update_boundaries_model (within module_shallow_water_model.f90)
Build the code following README.md or build.sh
The text was updated successfully, but these errors were encountered:
robgpita
changed the title
Please add support for Serialization Fortran classes, and subroutine arguments.
Please add support for Serialization of Fortran classes, and subroutine arguments declared intent(in).
Sep 2, 2022
The non-descriptive error message :
Displays when trying to Serialize data as part of a Fortran class -
class(shallow_water_model_type), intent( in) :: this
.As well as when trying to serialize data passed as Fortran subroutine arguments declared
intent(in)
Steps to Reproduce:
clone SENA-shallow-water repository
Insert Serialbox directives into subroutines
adv_nsteps_model
,update_interior_model
, orupdate_boundaries_model
(withinmodule_shallow_water_model.f90
)Build the code following
README.md
orbuild.sh
The text was updated successfully, but these errors were encountered: