public interface copy
copy provides a blas-less implementation of xcopy where x is (i,s,d) icopy, scopy, dcopy
if you built pic with BLAS use the copy interface provided there, I will not beat BLAS
copy is implemented for (int32, int64, sp, dp) for 1 and 2d arrays of the same types
Usage: call copy(destination, source, [optional] threaded)
This subroutine is threaded for performance purposes if threaded is set to .true.
Note
If this subroutine is called inside a omp threaded region it will run serially because of nested parallelism
interface~~copy~~CallsGraph
interface~copy
copy
proc~copy_matrix_dp
copy_matrix_dp
interface~copy->proc~copy_matrix_dp
proc~copy_matrix_int32
copy_matrix_int32
interface~copy->proc~copy_matrix_int32
proc~copy_matrix_int64
copy_matrix_int64
interface~copy->proc~copy_matrix_int64
proc~copy_matrix_sp
copy_matrix_sp
interface~copy->proc~copy_matrix_sp
proc~copy_vector_dp
copy_vector_dp
interface~copy->proc~copy_vector_dp
proc~copy_vector_int32
copy_vector_int32
interface~copy->proc~copy_vector_int32
proc~copy_vector_int64
copy_vector_int64
interface~copy->proc~copy_vector_int64
proc~copy_vector_sp
copy_vector_sp
interface~copy->proc~copy_vector_sp
Nodes of different colours represent the following:
Graph Key
Subroutine
Subroutine
Function
Function
Interface
Interface
Type Bound Procedure
Type Bound Procedure
Unknown Procedure Type
Unknown Procedure Type
Program
Program
This Page's Entity
This Page's Entity
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.
Module Procedures
Arguments
Type
Intent Optional Attributes
Name
integer(kind=int32),
intent(inout)
::
dest (:)
integer(kind=int32),
intent(in)
::
source (:)
logical,
intent(in),
optional
::
threaded
Arguments
Type
Intent Optional Attributes
Name
integer(kind=int64),
intent(inout)
::
dest (:)
integer(kind=int64),
intent(in)
::
source (:)
logical,
intent(in),
optional
::
threaded
Arguments
Type
Intent Optional Attributes
Name
real(kind=sp),
intent(inout)
::
dest (:)
real(kind=sp),
intent(in)
::
source (:)
logical,
intent(in),
optional
::
threaded
Arguments
Type
Intent Optional Attributes
Name
real(kind=dp),
intent(inout)
::
dest (:)
real(kind=dp),
intent(in)
::
source (:)
logical,
intent(in),
optional
::
threaded
Arguments
Type
Intent Optional Attributes
Name
integer(kind=int32),
intent(inout)
::
dest (:,:)
integer(kind=int32),
intent(in)
::
source (:,:)
logical,
intent(in),
optional
::
threaded
Arguments
Type
Intent Optional Attributes
Name
integer(kind=int64),
intent(inout)
::
dest (:,:)
integer(kind=int64),
intent(in)
::
source (:,:)
logical,
intent(in),
optional
::
threaded
Arguments
Type
Intent Optional Attributes
Name
real(kind=sp),
intent(inout)
::
dest (:,:)
real(kind=sp),
intent(in)
::
source (:,:)
logical,
intent(in),
optional
::
threaded
Arguments
Type
Intent Optional Attributes
Name
real(kind=dp),
intent(inout)
::
dest (:,:)
real(kind=dp),
intent(in)
::
source (:,:)
logical,
intent(in),
optional
::
threaded