![]() |
(git:b77b4be)
|
Public Member Functions | |
subroutine | dbt_put_2d_block (tensor, ind, sizes, block, summation) |
Template for dbt_put_block. | |
subroutine | dbt_put_3d_block (tensor, ind, sizes, block, summation) |
Template for dbt_put_block. | |
subroutine | dbt_put_4d_block (tensor, ind, sizes, block, summation) |
Template for dbt_put_block. | |
subroutine | dbt_put_anyd_block (tensor, ind, block, summation) |
Generic implementation of dbt_put_block, template for datatype. | |
Definition at line 78 of file dbt_block.F.
subroutine dbt_block::dbt_put_block::dbt_put_2d_block | ( | type(dbt_type), intent(inout) | tensor, |
integer, dimension(2), intent(in) | ind, | ||
integer, dimension(2), intent(in) | sizes, | ||
real(dp), dimension(sizes(1), sizes(2)), intent(in), target | block, | ||
logical, intent(in), optional | summation | ||
) |
Template for dbt_put_block.
ind | block index |
sizes | block size |
block | block to put |
summation | whether block should be summed to existing block |
param
param
Definition at line 536 of file dbt_block.F.
subroutine dbt_block::dbt_put_block::dbt_put_3d_block | ( | type(dbt_type), intent(inout) | tensor, |
integer, dimension(3), intent(in) | ind, | ||
integer, dimension(3), intent(in) | sizes, | ||
real(dp), dimension(sizes(1), sizes(2), sizes(3)), intent(in), target | block, | ||
logical, intent(in), optional | summation | ||
) |
Template for dbt_put_block.
ind | block index |
sizes | block size |
block | block to put |
summation | whether block should be summed to existing block |
param
param
Definition at line 598 of file dbt_block.F.
subroutine dbt_block::dbt_put_block::dbt_put_4d_block | ( | type(dbt_type), intent(inout) | tensor, |
integer, dimension(4), intent(in) | ind, | ||
integer, dimension(4), intent(in) | sizes, | ||
real(dp), dimension(sizes(1), sizes(2), sizes(3), sizes(4)), intent(in), target | block, | ||
logical, intent(in), optional | summation | ||
) |
Template for dbt_put_block.
ind | block index |
sizes | block size |
block | block to put |
summation | whether block should be summed to existing block |
param
param
Definition at line 660 of file dbt_block.F.
subroutine dbt_block::dbt_put_block::dbt_put_anyd_block | ( | type(dbt_type), intent(inout) | tensor, |
integer, dimension(ndims_tensor(tensor)), intent(in) | ind, | ||
type(block_nd), intent(in) | block, | ||
logical, intent(in), optional | summation | ||
) |
Generic implementation of dbt_put_block, template for datatype.
block | block to put |
summation | whether block should be summed to existing block |
ind | block index |
param
param
author Patrick Seewald
Definition at line 472 of file dbt_block.F.