-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathdddot.f
More file actions
37 lines (37 loc) · 891 Bytes
/
dddot.f
File metadata and controls
37 lines (37 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
SUBROUTINE DDDOT( N, DOT, X, INCX, Y, INCY )
IMPLICIT NONE
*
* -- ScaLAPACK tools routine (version 1.7) --
* University of Tennessee, Knoxville, Oak Ridge National Laboratory,
* and University of California, Berkeley.
* May 1, 1997
*
* .. Scalar Arguments ..
INTEGER INCX, INCY, N
DOUBLE PRECISION DOT
* ..
* .. Array Arguments ..
DOUBLE PRECISION X( * ), Y( * )
* ..
*
* Purpose
* =======
*
* DDDOT is a simple FORTRAN wrapper around the BLAS function
* DDOT returning the result in the parameter list instead.
*
* =====================================================================
*
* .. External Functions ..
DOUBLE PRECISION DDOT
EXTERNAL DDOT
* ..
* .. Executable Statements ..
*
DOT = DDOT( N, X, INCX, Y, INCY )
*
RETURN
*
* End of DDDOT
*
END