Skip to content

Commit

Permalink
updating tag for 4.0 (minor doc changes)
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.code.sf.net/p/polybench/code/tags/polybench-c-4.0@54 8a0be867-cad2-4629-9b38-09e595722795
  • Loading branch information
tomofumi-yuki committed Mar 3, 2015
2 parents f6d01d0 + 616eca8 commit 4222c54
Show file tree
Hide file tree
Showing 64 changed files with 136 additions and 8 deletions.
3 changes: 1 addition & 2 deletions deploy.pl
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@

my $HEADER = << "EOS";
/**
* __FILENAME__: This file is part of the PolyBench/C 4.0 test suite.
* This version is stamped on Feb. 25, 2015
* This version is stamped on Mar. 3, 2015
*
* Contact:
* Louis-Noel Pouchet <pouchet@cse.ohio-state.edu>
Expand Down
4 changes: 2 additions & 2 deletions polybench-code/README
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ PolyBench is currently available in C and in Fortran:
Available benchmarks (PolyBench/C 4.0)

Benchmark Description
2mm 2 Matrix Multiplications (D=A.B; E=C.D)
2mm 2 Matrix Multiplications (E=A.B; F=E.C; G=F+D)
3mm 3 Matrix Multiplications (E=A.B; F=C.D; G=E.F)
adi Alternating Direction Implicit solver
atax Matrix Transpose and Vector Multiplication
Expand All @@ -52,7 +52,7 @@ head-3d Heat equation over 3D data domain
jacobi-1D 1-D Jacobi stencil computation
jacobi-2D 2-D Jacobi stencil computation
lu LU decomposition
ludcmp LU decomposition
ludcmp LU decomposition followed by FS
mvt Matrix Vector Product and Transpose
nussinov Dynamic programming algorithm for sequence alignment
seidel 2-D Seidel stencil computation
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/datamining/correlation/correlation.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* correlation.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/datamining/correlation/correlation.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* correlation.h: this file is part of PolyBench/C */

#ifndef _CORRELATION_H
# define _CORRELATION_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/datamining/covariance/covariance.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* covariance.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/datamining/covariance/covariance.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* covariance.h: this file is part of PolyBench/C */

#ifndef _COVARIANCE_H
# define _COVARIANCE_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/blas/gemm/gemm.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* gemm.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/blas/gemm/gemm.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* gemm.h: this file is part of PolyBench/C */

#ifndef _GEMM_H
# define _GEMM_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/blas/gemver/gemver.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* gemver.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/blas/gemver/gemver.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* gemver.h: this file is part of PolyBench/C */

#ifndef _GEMVER_H
# define _GEMVER_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/blas/gesummv/gesummv.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* gesummv.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/blas/gesummv/gesummv.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* gesummv.h: this file is part of PolyBench/C */

#ifndef _GESUMMV_H
# define _GESUMMV_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/blas/symm/symm.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* symm.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/blas/symm/symm.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* symm.h: this file is part of PolyBench/C */

#ifndef _SYMM_H
# define _SYMM_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/blas/syr2k/syr2k.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* syr2k.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/blas/syr2k/syr2k.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* syr2k.h: this file is part of PolyBench/C */

#ifndef _SYR2K_H
# define _SYR2K_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/blas/syrk/syrk.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* syrk.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/blas/syrk/syrk.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* syrk.h: this file is part of PolyBench/C */

#ifndef _SYRK_H
# define _SYRK_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/blas/trmm/trmm.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* trmm.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/blas/trmm/trmm.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* trmm.h: this file is part of PolyBench/C */

#ifndef _TRMM_H
# define _TRMM_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/kernels/2mm/2mm.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* 2mm.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/kernels/2mm/2mm.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* 2mm.h: this file is part of PolyBench/C */

#ifndef _2MM_H
# define _2MM_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/kernels/3mm/3mm.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* 3mm.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/kernels/3mm/3mm.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* 3mm.h: this file is part of PolyBench/C */

#ifndef _3MM_H
# define _3MM_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/kernels/atax/atax.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* atax.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/kernels/atax/atax.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* atax.h: this file is part of PolyBench/C */

#ifndef _ATAX_H
# define _ATAX_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/kernels/bicg/bicg.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* bicg.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/kernels/bicg/bicg.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* bicg.h: this file is part of PolyBench/C */

#ifndef _BICG_H
# define _BICG_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/kernels/doitgen/doitgen.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* doitgen.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/kernels/doitgen/doitgen.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* doitgen.h: this file is part of PolyBench/C */

#ifndef _DOITGEN_H
# define _DOITGEN_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/kernels/mvt/mvt.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* mvt.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/kernels/mvt/mvt.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* mvt.h: this file is part of PolyBench/C */

#ifndef _MVT_H
# define _MVT_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/solvers/cholesky/cholesky.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* cholesky.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/solvers/cholesky/cholesky.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* cholesky.h: this file is part of PolyBench/C */

#ifndef _CHOLESKY_H
# define _CHOLESKY_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/solvers/durbin/durbin.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* durbin.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/solvers/durbin/durbin.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* durbin.h: this file is part of PolyBench/C */

#ifndef _DURBIN_H
# define _DURBIN_H

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* gramschmidt.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* gramschmidt.h: this file is part of PolyBench/C */

#ifndef _GRAMSCHMIDT_H
# define _GRAMSCHMIDT_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/solvers/lu/lu.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* lu.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/solvers/lu/lu.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* lu.h: this file is part of PolyBench/C */

#ifndef _LU_H
# define _LU_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/solvers/ludcmp/ludcmp.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* ludcmp.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/solvers/ludcmp/ludcmp.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* ludcmp.h: this file is part of PolyBench/C */

#ifndef _LUDCMP_H
# define _LUDCMP_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/solvers/trisolv/trisolv.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* trisolv.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/linear-algebra/solvers/trisolv/trisolv.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* trisolv.h: this file is part of PolyBench/C */

#ifndef _TRISOLV_H
# define _TRISOLV_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/medley/deriche/deriche.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* deriche.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/medley/deriche/deriche.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* deriche.h: this file is part of PolyBench/C */

#ifndef _DERICHE_H
# define _DERICHE_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/medley/floyd-warshall/floyd-warshall.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* floyd-warshall.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/medley/floyd-warshall/floyd-warshall.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* floyd-warshall.h: this file is part of PolyBench/C */

#ifndef _FLOYD_WARSHALL_H
# define _FLOYD_WARSHALL_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/medley/nussinov/nussinov.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* nussinov.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/medley/nussinov/nussinov.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* nussinov.h: this file is part of PolyBench/C */

#ifndef _NUSSINOV_H
# define _NUSSINOV_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/stencils/adi/adi.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* adi.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/stencils/adi/adi.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* adi.h: this file is part of PolyBench/C */

#ifndef _ADI_H
# define _ADI_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/stencils/fdtd-2d/fdtd-2d.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* fdtd-2d.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/stencils/fdtd-2d/fdtd-2d.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* fdtd-2d.h: this file is part of PolyBench/C */

#ifndef _FDTD_2D_H
# define _FDTD_2D_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/stencils/heat-3d/heat-3d.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* heat-3d.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/stencils/heat-3d/heat-3d.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* heat-3d.h: this file is part of PolyBench/C */

#ifndef _HEAT_3D_H
# define _HEAT_3D_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/stencils/jacobi-1d/jacobi-1d.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* jacobi-1d.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/stencils/jacobi-1d/jacobi-1d.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* jacobi-1d.h: this file is part of PolyBench/C */

#ifndef _JACOBI_1D_H
# define _JACOBI_1D_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/stencils/jacobi-2d/jacobi-2d.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* jacobi-2d.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/stencils/jacobi-2d/jacobi-2d.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* jacobi-2d.h: this file is part of PolyBench/C */

#ifndef _JACOBI_2D_H
# define _JACOBI_2D_H

Expand Down
2 changes: 2 additions & 0 deletions polybench-code/stencils/seidel-2d/seidel-2d.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* seidel-2d.c: this file is part of PolyBench/C */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
Expand Down
2 changes: 2 additions & 0 deletions polybench-code/stencils/seidel-2d/seidel-2d.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* seidel-2d.h: this file is part of PolyBench/C */

#ifndef _SEIDEL_2D_H
# define _SEIDEL_2D_H

Expand Down
Binary file modified polybench-doc/polybench.pdf
Binary file not shown.
Loading

0 comments on commit 4222c54

Please sign in to comment.