xref: /phasta/svLS/DOT.f (revision 712d3df0b59ebebaaeaea358162c8d2c043c6e08)
1*1e99f302SBen Matthews!     This software is Copyright (c) 2012-2015 The Regents of the
2*1e99f302SBen Matthews!     University of California. All Rights Reserved.
3*1e99f302SBen Matthews!
4*1e99f302SBen Matthews!     Permission to copy and modify this software and its documentation
5*1e99f302SBen Matthews!     for educational, research and non-profit purposes, without fee,
6*1e99f302SBen Matthews!     and without a written agreement is hereby granted, provided that
7*1e99f302SBen Matthews!     the above copyright notice, this paragraph and the following three
8*1e99f302SBen Matthews!     paragraphs appear in all copies.
9*1e99f302SBen Matthews!
10*1e99f302SBen Matthews!     Permission to make commercial use of this software may be obtained
11*1e99f302SBen Matthews!     by contacting:
12*1e99f302SBen Matthews!
13*1e99f302SBen Matthews!     Technology Transfer Office
14*1e99f302SBen Matthews!     9500 Gilman Drive, Mail Code 0910
15*1e99f302SBen Matthews!     University of California
16*1e99f302SBen Matthews!     La Jolla, CA 92093-0910
17*1e99f302SBen Matthews!     (858) 534-5815
18*1e99f302SBen Matthews!     invent@ucsd.edu
19*1e99f302SBen Matthews!
20*1e99f302SBen Matthews!     This software program and documentation are copyrighted by The
21*1e99f302SBen Matthews!     Regents of the University of California. The software program and
22*1e99f302SBen Matthews!     documentation are supplied "as is", without any accompanying
23*1e99f302SBen Matthews!     services from The Regents. The Regents does not warrant that the
24*1e99f302SBen Matthews!     operation of the program will be uninterrupted or error-free. The
25*1e99f302SBen Matthews!     end-user understands that the program was developed for research
26*1e99f302SBen Matthews!     purposes and is advised not to rely exclusively on the program for
27*1e99f302SBen Matthews!     any reason.
28*1e99f302SBen Matthews!
29*1e99f302SBen Matthews!     IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY
30*1e99f302SBen Matthews!     PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL
31*1e99f302SBen Matthews!     DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS
32*1e99f302SBen Matthews!     SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
33*1e99f302SBen Matthews!     CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34*1e99f302SBen Matthews!     THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY
35*1e99f302SBen Matthews!     WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
36*1e99f302SBen Matthews!     OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE
37*1e99f302SBen Matthews!     SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE
38*1e99f302SBen Matthews!     UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE
39*1e99f302SBen Matthews!     MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
40*1e99f302SBen Matthews
41*1e99f302SBen Matthews      FUNCTION DOTV(dof, nNo, commu, U, V)
42*1e99f302SBen Matthews
43*1e99f302SBen Matthews      INCLUDE "svLS_STD.h"
44*1e99f302SBen Matthews
45*1e99f302SBen Matthews      INTEGER, INTENT(IN) :: dof, nNo
46*1e99f302SBen Matthews      TYPE(svLS_commuType), INTENT(IN) :: commu
47*1e99f302SBen Matthews      REAL*8, INTENT(IN) :: V(dof,nNo), U(dof,nNo)
48*1e99f302SBen Matthews
49*1e99f302SBen Matthews      INTEGER i, ierr
50*1e99f302SBen Matthews      REAL*8 tmp, DOTV
51*1e99f302SBen Matthews
52*1e99f302SBen Matthews      DOTV = 0D0
53*1e99f302SBen Matthews      SELECT CASE(dof)
54*1e99f302SBen Matthews      CASE(1)
55*1e99f302SBen Matthews         DO i=1, nNo
56*1e99f302SBen Matthews            DOTV = DOTV + U(1,i)*V(1,i)
57*1e99f302SBen Matthews         END DO
58*1e99f302SBen Matthews      CASE(2)
59*1e99f302SBen Matthews         DO i=1, nNo
60*1e99f302SBen Matthews            DOTV = DOTV + U(1,i)*V(1,i) + U(2,i)*V(2,i)
61*1e99f302SBen Matthews         END DO
62*1e99f302SBen Matthews      CASE(3)
63*1e99f302SBen Matthews         DO i=1, nNo
64*1e99f302SBen Matthews            DOTV = DOTV + U(1,i)*V(1,i) + U(2,i)*V(2,i) +U(3,i)*V(3,i)
65*1e99f302SBen Matthews         END DO
66*1e99f302SBen Matthews      CASE(4)
67*1e99f302SBen Matthews         DO i=1, nNo
68*1e99f302SBen Matthews            DOTV = DOTV + U(1,i)*V(1,i) + U(2,i)*V(2,i)
69*1e99f302SBen Matthews     2                  + U(3,i)*V(3,i) + U(4,i)*V(4,i)
70*1e99f302SBen Matthews         END DO
71*1e99f302SBen Matthews      CASE DEFAULT
72*1e99f302SBen Matthews         DO i=1, nNo
73*1e99f302SBen Matthews            DOTV = DOTV + SUM(U(:,i)*V(:,i))
74*1e99f302SBen Matthews         END DO
75*1e99f302SBen Matthews      END SELECT
76*1e99f302SBen Matthews
77*1e99f302SBen Matthews      IF (commu%nTasks .EQ. 1) RETURN
78*1e99f302SBen Matthews
79*1e99f302SBen Matthews      CALL MPI_ALLREDUCE(DOTV, tmp, 1, mpreal, MPI_SUM, commu%comm,
80*1e99f302SBen Matthews     2   ierr)
81*1e99f302SBen Matthews
82*1e99f302SBen Matthews      DOTV = tmp
83*1e99f302SBen Matthews
84*1e99f302SBen Matthews      RETURN
85*1e99f302SBen Matthews      END FUNCTION DOTV
86*1e99f302SBen Matthews
87*1e99f302SBen Matthews!====================================================================
88*1e99f302SBen Matthews
89*1e99f302SBen Matthews      FUNCTION DOTS(nNo, commu, U, V)
90*1e99f302SBen Matthews
91*1e99f302SBen Matthews      INCLUDE "svLS_STD.h"
92*1e99f302SBen Matthews
93*1e99f302SBen Matthews      INTEGER, INTENT(IN) :: nNo
94*1e99f302SBen Matthews      TYPE(svLS_commuType), INTENT(IN) :: commu
95*1e99f302SBen Matthews      REAL*8, INTENT(IN) :: V(nNo), U(nNo)
96*1e99f302SBen Matthews
97*1e99f302SBen Matthews      INTEGER i, ierr
98*1e99f302SBen Matthews      REAL*8 tmp, DOTS
99*1e99f302SBen Matthews
100*1e99f302SBen Matthews      DOTS = 0D0
101*1e99f302SBen Matthews      DO i=1, nNo
102*1e99f302SBen Matthews         DOTS = DOTS + U(i)*V(i)
103*1e99f302SBen Matthews      END DO
104*1e99f302SBen Matthews
105*1e99f302SBen Matthews      IF (commu%nTasks .EQ. 1) RETURN
106*1e99f302SBen Matthews
107*1e99f302SBen Matthews      CALL MPI_ALLREDUCE(DOTS, tmp, 1, mpreal, MPI_SUM, commu%comm,
108*1e99f302SBen Matthews     2   ierr)
109*1e99f302SBen Matthews
110*1e99f302SBen Matthews      DOTS = tmp
111*1e99f302SBen Matthews
112*1e99f302SBen Matthews      RETURN
113*1e99f302SBen Matthews      END FUNCTION DOTS
114