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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gcc.dg/] [graphite/] [scop-matmult.c] - Rev 338

Compare with Previous | Blame | View Log

/* { dg-require-effective-target size32plus } */
 
float A[1000][1000], B[1000][1000], C[1000][1000];
 
/* Multiply two n x n matrices A and B and store the result in C.  */
 
void matmult (int n)
{
  int i,j,k;
 
  for (i = 0; i < n; i++)
    for (j = 0; j < n; j++)
      for (k = 0; k < n; k++)
        A[i][j] += B[i][k] * C[k][j];
}
 
/* This one fails because the number of iterations cannot be
   determined anymore for the outermost loop.  */
/* { dg-final { scan-tree-dump-times "number of SCoPs: 1" 1 "graphite" } } */
/* { dg-final { cleanup-tree-dump "graphite" } } */
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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