Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Variables
Type
Visibility
Attributes
Name
Initial
integer,
private
::
i
type(request_t),
private
::
req
Source Code
subroutine flush_group_results(world_comm,batch_count,batch_ids,batch_results)!! Send all currently batched results to rank 0 and reset the batch.type(comm_t),intent(in)::world_comminteger(int32),intent(inout)::batch_countinteger(int64),intent(inout)::batch_ids(:)type(calculation_result_t),intent(inout)::batch_results(:)type(request_t)::reqinteger::iif(batch_count<=0)return call isend(world_comm,batch_count,0,TAG_GROUP_RESULT,req)call wait(req)call isend(world_comm,batch_ids(1:batch_count),0,TAG_GROUP_RESULT,req)call wait(req)do i=1,batch_countcall result_isend(batch_results(i),world_comm,0,TAG_GROUP_RESULT,req)call wait(req)call batch_results(i)%destroy()end dobatch_count=0end subroutine flush_group_results