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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [vect/] [fast-math-vect-reduc-5.c] - Blame information for rev 689

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 689 jeremybenn
/* { dg-require-effective-target vect_float } */
2
 
3
/* need -funsafe-math-optimizations to vectorize the summation.
4
   also need -ffinite-math-only to create the min/max expr.  */
5
 
6
#include <stdarg.h>
7
#include "tree-vect.h"
8
 
9
#define N 16
10
#define DIFF 242
11
 
12
float b[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45};
13
float c[N] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
14
 
15
int main1 (float x, float max_result)
16
{
17
  int i;
18
  float diff = 2;
19
  float max = x;
20
  float min = 10;
21
 
22
  for (i = 0; i < N; i++) {
23
    diff += (b[i] - c[i]);
24
  }
25
 
26
  for (i = 0; i < N; i++) {
27
    max = max < c[i] ? c[i] : max;
28
  }
29
 
30
  for (i = 0; i < N; i++) {
31
    min = min > c[i] ? c[i] : min;
32
  }
33
 
34
  /* check results:  */
35
  if (diff != DIFF)
36
    abort ();
37
  if (max != max_result)
38
    abort ();
39
  if (min != 0)
40
    abort ();
41
 
42
  return 0;
43
}
44
 
45
int main (void)
46
{
47
  check_vect ();
48
 
49
  main1 (100, 100);
50
  main1 (0, 15);
51
  return 0;
52
}
53
 
54
/* { dg-final { scan-tree-dump-times "vectorized 3 loops" 1 "vect" } } */
55
/* { dg-final { cleanup-tree-dump "vect" } } */

powered by: WebSVN 2.1.0

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