Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
integer, | public | :: | comm | ||||
integer, | public, | allocatable | :: | displs(:) | |||
integer, | public | :: | n | ||||
integer, | public | :: | np | ||||
integer, | public | :: | rank | ||||
integer, | public, | allocatable | :: | recvcnts(:) | |||
real, | public, | allocatable | :: | buffer(:) |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | n | |||
integer, | intent(in) | :: | comm |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(GathervKernel), | intent(inout) | :: | this | |||
integer, | intent(out), | optional | :: | rc |
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(GathervKernel), | intent(in) | :: | this | |||
integer, | intent(out), | optional | :: | rc |
type :: GathervKernel integer :: n integer :: comm integer :: rank integer :: np real, allocatable :: buffer(:) integer, allocatable :: displs(:) integer, allocatable :: recvcnts(:) contains procedure :: init procedure :: run end type GathervKernel