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

Subversion Repositories scarts

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

powered by: WebSVN 2.1.0

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