Gathers a sparse vector's elements into compressed form, replacing them by zeros.
FORTRAN 77:
call sgthrz(nz, y, x, indx )
call dgthrz(nz, y, x, indx )
call cgthrz(nz, y, x, indx )
call zgthrz(nz, y, x, indx )
Fortran 95:
res = gthrz(x, indx, y)
The FORTRAN 77 interfaces are specified in the mkl_blas.fi include file, the Fortran 95 interfaces are specified in the blas.f90 include file, and the C interfaces are specified in the mkl_blas.h include file.
The ?gthrz routines gather the elements with indices specified by the array indx from a full-storage vector y into compressed form (nz, x, indx) and overwrite the gathered elements of y by zeros. Other elements of y are not referenced or modified (see also ?gthr).
INTEGER. The number of elements of y to be gathered.
INTEGER. Specifies indices of elements to be gathered.
Array, DIMENSION at least nz.
REAL for sgthrz
DOUBLE PRECISION for dgthrz
COMPLEX for cgthrz
DOUBLE COMPLEX for zgthrz
Array, DIMENSION at least max(indx(i)).
REAL for sgthrz
DOUBLE PRECISION for d gthrz
COMPLEX for cgthrz
DOUBLE COMPLEX for zgthrz
Array, DIMENSION at least nz.
Contains the vector converted to the compressed form.
The updated vector y.
Routines in Fortran 95 interface have fewer arguments in the calling sequence than their FORTRAN 77 counterparts. For general conventions applied to skip redundant or reconstructible arguments, see Fortran 95 Interface Conventions.
Specific details for the routine gthrz interface are the following:
Holds the vector with the number of elements nz.
Holds the vector with the number of elements nz.
Holds the vector with the number of elements nz.
Copyright © 1994 - 2011, Intel Corporation. All rights reserved.