destroy_memory Subroutine

private subroutine destroy_memory()

Deallocate memeory from the gradient variables

Arguments

None

Calls

proc~~destroy_memory~~CallsGraph proc~destroy_memory destroy_memory interface~dealloc dealloc proc~destroy_memory->interface~dealloc debugcall debugcall proc~destroy_memory->debugcall proc~dealloc_rank2_real dealloc_rank2_real interface~dealloc->proc~dealloc_rank2_real proc~dealloc_rank4_real dealloc_rank4_real interface~dealloc->proc~dealloc_rank4_real proc~dealloc_rank1_integer dealloc_rank1_integer interface~dealloc->proc~dealloc_rank1_integer proc~dealloc_rank2_integer dealloc_rank2_integer interface~dealloc->proc~dealloc_rank2_integer proc~dealloc_rank1_real dealloc_rank1_real interface~dealloc->proc~dealloc_rank1_real proc~dealloc_rank3_integer dealloc_rank3_integer interface~dealloc->proc~dealloc_rank3_integer proc~dealloc_rank3_real dealloc_rank3_real interface~dealloc->proc~dealloc_rank3_real proc~dealloc_rank5_real dealloc_rank5_real interface~dealloc->proc~dealloc_rank5_real proc~dealloc_rank6_real dealloc_rank6_real interface~dealloc->proc~dealloc_rank6_real

Called by

proc~~destroy_memory~~CalledByGraph proc~destroy_memory destroy_memory proc~destroy_gradients destroy_gradients proc~destroy_gradients->proc~destroy_memory proc~destroy_all destroy_all proc~destroy_all->proc~destroy_gradients proc~destroy_solver destroy_solver proc~destroy_solver->proc~destroy_gradients proc~finish_run finish_run proc~finish_run->proc~destroy_solver proc~abort_run abort_run proc~abort_run->proc~destroy_solver program~main main program~main->proc~finish_run

Contents

Source Code


Source Code

    subroutine destroy_memory()
      !< Deallocate memeory from the gradient variables

      implicit none

      DebugCall("deallocate_memory")

      call dealloc(gradqp_x)
      call dealloc(gradqp_y)
      call dealloc(gradqp_z)

    end subroutine destroy_memory