Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(dbcsr_type), | intent(inout) | :: | matrix_a | |||
complex(kind=real_8), | intent(in), | DIMENSION(:), TARGET | :: | alpha | ||
character(len=*), | intent(in) | :: | side |
SUBROUTINE dbcsr_scale_by_vector_z (matrix_a, alpha, side) TYPE(dbcsr_type), INTENT(INOUT) :: matrix_a COMPLEX(kind=real_8), DIMENSION(:), INTENT(IN), TARGET :: alpha CHARACTER(LEN=*), INTENT(IN) :: side CALL dbcsr_scale_by_vector_prv(matrix_a%prv, alpha, side) END SUBROUTINE dbcsr_scale_by_vector_z