mfi_copy Interface

public interface mfi_copy

Generic modern interface for COPY. Supports s, d, c, z. See also: scopy, dcopy, ccopy, zcopy.


Module Procedures

public pure subroutine mfi_scopy(x, y, incx, incy)

Modern interface for scopy. See also: mfi_copy, f77_copy.

Arguments

Type IntentOptional Attributes Name
real(kind=REAL32), intent(in) :: x(:)
real(kind=REAL32), intent(inout) :: y(:)
integer, intent(in), optional :: incx
integer, intent(in), optional :: incy

public pure subroutine mfi_dcopy(x, y, incx, incy)

Modern interface for dcopy. See also: mfi_copy, f77_copy.

Arguments

Type IntentOptional Attributes Name
real(kind=REAL64), intent(in) :: x(:)
real(kind=REAL64), intent(inout) :: y(:)
integer, intent(in), optional :: incx
integer, intent(in), optional :: incy

public pure subroutine mfi_ccopy(x, y, incx, incy)

Modern interface for ccopy. See also: mfi_copy, f77_copy.

Arguments

Type IntentOptional Attributes Name
complex(kind=REAL32), intent(in) :: x(:)
complex(kind=REAL32), intent(inout) :: y(:)
integer, intent(in), optional :: incx
integer, intent(in), optional :: incy

public pure subroutine mfi_zcopy(x, y, incx, incy)

Modern interface for zcopy. See also: mfi_copy, f77_copy.

Arguments

Type IntentOptional Attributes Name
complex(kind=REAL64), intent(in) :: x(:)
complex(kind=REAL64), intent(inout) :: y(:)
integer, intent(in), optional :: incx
integer, intent(in), optional :: incy