OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [libgfortran/] [generated/] [dotprod_c10.c] - Blame information for rev 14

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 14 jlechner
/* Implementation of the DOT_PRODUCT intrinsic
2
   Copyright 2002 Free Software Foundation, Inc.
3
   Contributed by Paul Brook <paul@nowt.org>
4
   and Feng Wang <fengwang@nudt.edu.cn>
5
 
6
This file is part of the GNU Fortran 95 runtime library (libgfortran).
7
 
8
Libgfortran is free software; you can redistribute it and/or
9
modify it under the terms of the GNU General Public
10
License as published by the Free Software Foundation; either
11
version 2 of the License, or (at your option) any later version.
12
 
13
In addition to the permissions in the GNU General Public License, the
14
Free Software Foundation gives you unlimited permission to link the
15
compiled version of this file into combinations with other programs,
16
and to distribute those combinations without any restriction coming
17
from the use of this file.  (The General Public License restrictions
18
do apply in other respects; for example, they cover modification of
19
the file, and distribution when not linked into a combine
20
executable.)
21
 
22
Libgfortran is distributed in the hope that it will be useful,
23
but WITHOUT ANY WARRANTY; without even the implied warranty of
24
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25
GNU General Public License for more details.
26
 
27
You should have received a copy of the GNU General Public
28
License along with libgfortran; see the file COPYING.  If not,
29
write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
30
Boston, MA 02110-1301, USA.  */
31
 
32
#include "config.h"
33
#include <stdlib.h>
34
#include <assert.h>
35
#include "libgfortran.h"
36
 
37
#if defined (HAVE_GFC_COMPLEX_10)
38
 
39
typedef GFC_ARRAY_DESCRIPTOR(GFC_MAX_DIMENSIONS, char) char_array;
40
 
41
extern GFC_COMPLEX_10 dot_product_c10 (gfc_array_c10 * a, gfc_array_c10 * b);
42
export_proto(dot_product_c10);
43
 
44
/* Both parameters will already have been converted to the result type.  */
45
GFC_COMPLEX_10
46
dot_product_c10 (gfc_array_c10 * a, gfc_array_c10 * b)
47
{
48
  GFC_COMPLEX_10 *pa;
49
  GFC_COMPLEX_10 *pb;
50
  GFC_COMPLEX_10 res;
51
  index_type count;
52
  index_type astride;
53
  index_type bstride;
54
 
55
  assert (GFC_DESCRIPTOR_RANK (a) == 1
56
          && GFC_DESCRIPTOR_RANK (b) == 1);
57
 
58
  if (a->dim[0].stride == 0)
59
    a->dim[0].stride = 1;
60
  if (b->dim[0].stride == 0)
61
    b->dim[0].stride = 1;
62
 
63
  astride = a->dim[0].stride;
64
  bstride = b->dim[0].stride;
65
  count = a->dim[0].ubound + 1 - a->dim[0].lbound;
66
  res = 0;
67
  pa = a->data;
68
  pb = b->data;
69
 
70
  while (count--)
71
    {
72
      res += __builtin_conjl (*pa) * *pb;
73
      pa += astride;
74
      pb += bstride;
75
    }
76
 
77
  return res;
78
}
79
 
80
#endif

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.