├── .clang-format ├── .github └── workflows │ ├── build_and_test.yml │ └── clang_format.yml ├── .gitignore ├── .gitmodules ├── ACKS ├── AUTHORS ├── CONTRIBUTING.md ├── ChangeLog ├── LICENSE ├── Makefile.am ├── NEWS ├── README.md ├── autogen.sh ├── configure.ac ├── doc ├── CodingStyle ├── SubmittingPatches └── pluto.bib ├── examples ├── .gitignore ├── .upload ├── 3d7pt │ ├── 3d7pt.c │ ├── filename.sh │ └── filename1.sh ├── Makefile ├── adi │ ├── .gitignore │ ├── Makefile │ ├── adi-full.c │ ├── adi.c │ ├── decls.h │ ├── papi_defs.h │ └── util.h ├── advect3d │ ├── .gitignore │ ├── Makefile │ ├── adi.f │ ├── advect3d.c │ ├── advect3d.f │ ├── advect3d1.f │ ├── advect3d2.f │ ├── advect3d3.f │ ├── advect3d4.f │ ├── driver.f │ ├── papi_defs.h │ ├── swimm.f │ └── test.f ├── apop │ ├── Makefile │ ├── apop.c │ └── tile.sizes ├── common.mk ├── corcol │ ├── .gitignore │ ├── Makefile │ ├── corcol.c │ ├── corcol3.c │ └── util.h ├── covcol │ ├── .gitignore │ ├── Makefile │ ├── covcol.c │ └── util.h ├── dct │ ├── .gitignore │ ├── Makefile │ ├── dct.c │ └── papi_defs.h ├── doitgen │ ├── .gitignore │ ├── Makefile │ ├── decls.h │ ├── doitgen.c │ ├── doitgen.dgemm.c │ ├── doitgen.mkl.c │ ├── fst │ │ ├── transformation_0.fst │ │ ├── transformation_1.fst │ │ ├── transformation_2.fst │ │ └── transformation_3.fst │ ├── papi_defs.h │ ├── template.c │ ├── tile.sizes │ └── util.h ├── dsyr2k │ ├── .gitignore │ ├── Makefile │ ├── dsyr2k.c │ ├── papi_defs.h │ ├── tile.sizes │ └── util.h ├── dsyrk │ ├── .gitignore │ ├── Makefile │ ├── dsyrk.c │ ├── tile.sizes │ └── util.h ├── fdtd-1d │ ├── .gitignore │ ├── Makefile │ ├── data.decls │ ├── fdtd-1d.c │ ├── papi_defs.h │ └── tile.sizes ├── fdtd-2d │ ├── .gitignore │ ├── Makefile │ ├── fdtd-2d.c │ ├── fdtd-2d.sched.c │ ├── papi_defs.h │ └── test.c ├── floyd │ ├── Makefile │ └── floyd.c ├── game-of-life │ ├── Makefile │ ├── life.c │ └── tile.sizes ├── gemver │ ├── .gitignore │ ├── Makefile │ ├── fst │ │ ├── transformation_0.fst │ │ ├── transformation_1.fst │ │ ├── transformation_2.fst │ │ ├── transformation_3.fst │ │ ├── transformation_4.fst │ │ ├── transformation_5.fst │ │ ├── transformation_6.fst │ │ └── transformation_7.fst │ ├── gemver.blas.c │ ├── gemver.c │ ├── gemver.f │ ├── papi_defs.h │ ├── tile.sizes │ └── util.h ├── heat-1d │ ├── Makefile │ ├── heat-1d.c │ └── tile.sizes ├── heat-2d │ ├── Makefile │ ├── heat-2d.c │ ├── heat-2d.omp.c │ └── tile.sizes ├── heat-3d │ ├── Makefile │ ├── heat-3d.c │ └── tile.sizes ├── jacobi-1d-imper │ ├── .gitignore │ ├── Makefile │ ├── jacobi-1d-imper.c │ ├── jacobi-1d-imper.limlam.c │ ├── jacobi-1d-imper.sched.c │ ├── jacobi-imper.limlam.c │ ├── papi_defs.h │ ├── tile.sizes │ └── util.h ├── jacobi-2d-imper │ ├── .gitignore │ ├── Makefile │ ├── jacobi-2d-imper.c │ └── papi_defs.h ├── lbm │ ├── fpc │ │ └── d2q9 │ │ │ ├── Makefile │ │ │ └── fpc_d2q9.c │ ├── ldc │ │ ├── d2q9 │ │ │ ├── Makefile │ │ │ └── ldc_d2q9.c │ │ ├── d3q19 │ │ │ ├── Makefile │ │ │ └── ldc_d3q19.c │ │ └── d3q27 │ │ │ ├── Makefile │ │ │ └── ldc_d3q27.c │ ├── mrt │ │ └── d2q9 │ │ │ ├── Makefile │ │ │ └── mrt_ldc_d2q9.c │ └── poiseuille │ │ └── d2q9 │ │ ├── Makefile │ │ └── poiseuille_d2q9.c ├── lu │ ├── .gitignore │ ├── Makefile │ ├── lu.c │ ├── lu.sched.c │ ├── papi_defs.h │ └── tile.sizes ├── matmul-init │ ├── .gitignore │ ├── Makefile │ ├── decls.h │ ├── matmul-init.c │ ├── papi_defs.h │ ├── tile.sizes │ └── util.h ├── matmul │ ├── .gitignore │ ├── Makefile │ ├── dgemm.f │ ├── matmul.blas.c │ ├── matmul.c │ ├── papi_defs.h │ └── tile.sizes ├── mvt │ ├── .gitignore │ ├── Makefile │ ├── decls.h │ ├── mvt.c │ ├── papi_defs.h │ └── util.h ├── pca │ ├── .gitignore │ ├── .pca.c.swp │ ├── Makefile │ ├── data.in │ ├── decls.h │ ├── pca.c │ └── util.h ├── seidel │ ├── .gitignore │ ├── Makefile │ ├── papi_defs.h │ ├── seidel.c │ ├── seidel.sched.c │ ├── tile.sizes │ └── util.h ├── ssymm │ ├── .gitignore │ ├── Makefile │ ├── ssymm.c │ └── util.h ├── strmm │ ├── .gitignore │ ├── Makefile │ ├── papi_defs.h │ ├── strmm.c │ └── util.h ├── strsm │ ├── .gitignore │ ├── Makefile │ └── strsm.c ├── tce │ ├── .gitignore │ ├── Makefile │ ├── data.decls │ ├── papi_defs.h │ └── tce-4index-transform.c ├── template │ ├── .gitignore │ ├── Makefile │ ├── papi_defs.h │ ├── template.c │ └── util.h ├── tmm │ ├── .gitignore │ ├── Makefile │ ├── decls.h │ ├── tmm.c │ └── util.h └── trisolv │ ├── .gitignore │ ├── Makefile │ ├── decls.h │ ├── trisolv.c │ └── util.h ├── getversion.sh.in ├── include └── pluto │ ├── matrix.h │ └── pluto.h ├── inscop ├── lib ├── .gitignore ├── Makefile.am ├── constraints.c ├── constraints.h ├── constraints_isl.c ├── ddg.c ├── ddg.h ├── framework-dfp.c ├── framework.cpp ├── gurobi-plugin.c ├── isl_support.c ├── isl_support.h ├── iss.c ├── libpluto_dummy.c ├── math_support.c ├── math_support.h ├── pet_to_pluto.h ├── pluto.c ├── pluto.h ├── plutolib.c ├── polyloop.c ├── post_transform.c ├── post_transform.h ├── program.cpp ├── program.h ├── tile.c ├── tile_size_selection_model.cpp ├── tile_size_selection_model.h ├── transforms.c └── transforms.h ├── m4 ├── .gitignore └── ax_cxx_compile_stdcxx.m4 ├── orio-0.1.0 ├── COPYING ├── PKG-INFO ├── README ├── doc │ ├── orio_logo.eps │ └── orio_logo.jpg ├── orcc ├── orf ├── setup.py ├── src │ ├── __init__.py │ ├── main │ │ ├── __init__.py │ │ ├── ann_parser.py │ │ ├── cmd_line_opts.py │ │ ├── code_frag.py │ │ ├── dyn_loader.py │ │ ├── main.py │ │ ├── opt_driver.py │ │ ├── tspec │ │ │ ├── __init__.py │ │ │ ├── eval.py │ │ │ ├── parser.py │ │ │ ├── tspec.py │ │ │ └── tune_info.py │ │ └── tuner │ │ │ ├── __init__.py │ │ │ ├── ptest_codegen.py │ │ │ ├── ptest_codegen_basic.py │ │ │ ├── ptest_codegen_parallel.py │ │ │ ├── ptest_driver.py │ │ │ ├── search │ │ │ ├── __init__.py │ │ │ ├── annealing │ │ │ │ ├── __init__.py │ │ │ │ └── annealing.py │ │ │ ├── exhaustive │ │ │ │ ├── __init__.py │ │ │ │ └── exhaustive.py │ │ │ ├── random │ │ │ │ ├── __init__.py │ │ │ │ └── random.py │ │ │ ├── search.py │ │ │ └── simplex │ │ │ │ ├── __init__.py │ │ │ │ └── simplex.py │ │ │ ├── skeleton_code.py │ │ │ └── tuner.py │ ├── module │ │ ├── __init__.py │ │ ├── align │ │ │ ├── __init__.py │ │ │ ├── align.py │ │ │ ├── codegen.py │ │ │ ├── parser.py │ │ │ └── variable.py │ │ ├── loop │ │ │ ├── __init__.py │ │ │ ├── ast.py │ │ │ ├── ast_lib │ │ │ │ ├── __init__.py │ │ │ │ ├── common_lib.py │ │ │ │ ├── constant_folder.py │ │ │ │ └── forloop_lib.py │ │ │ ├── codegen.py │ │ │ ├── loop.py │ │ │ ├── parser.py │ │ │ ├── submodule │ │ │ │ ├── __init__.py │ │ │ │ ├── arrcopy │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── arrcopy.py │ │ │ │ │ └── transformator.py │ │ │ │ ├── boundreplace │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── boundreplace.py │ │ │ │ │ └── transformator.py │ │ │ │ ├── composite │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── composite.py │ │ │ │ │ └── transformator.py │ │ │ │ ├── permut │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── permut.py │ │ │ │ │ └── transformator.py │ │ │ │ ├── pragma │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── pragma.py │ │ │ │ │ └── transformator.py │ │ │ │ ├── regtile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── regtile.py │ │ │ │ │ ├── semant.py │ │ │ │ │ └── transformator.py │ │ │ │ ├── scalarreplace │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── scalarreplace.py │ │ │ │ │ └── transformator.py │ │ │ │ ├── submodule.py │ │ │ │ ├── tile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── tile.py │ │ │ │ │ └── transformator.py │ │ │ │ ├── unroll │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── unroll.py │ │ │ │ └── unrolljam │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── transformator.py │ │ │ │ │ └── unrolljam.py │ │ │ └── transformator.py │ │ ├── module.py │ │ ├── polysyn │ │ │ ├── __init__.py │ │ │ ├── cloop_parser.py │ │ │ ├── macro_expander.py │ │ │ ├── parser.py │ │ │ ├── poly_transformator.py │ │ │ ├── polysyn.py │ │ │ ├── profiler.py │ │ │ ├── syn_transformator.py │ │ │ └── transf_info.py │ │ └── simplyrewrite │ │ │ ├── __init__.py │ │ │ └── simplyrewrite.py │ └── tool │ │ ├── README │ │ ├── ZestyParser │ │ ├── AHT.py │ │ ├── DebuggingParser.py │ │ ├── Helpers.py │ │ ├── Parser.py │ │ ├── Tags.py │ │ ├── Tokens.py │ │ └── __init__.py │ │ ├── __init__.py │ │ └── ply │ │ ├── __init__.py │ │ ├── lex.py │ │ └── yacc.py └── testsuite │ ├── README │ ├── _regtile.c │ ├── adi │ ├── adi.c │ └── pluto │ │ ├── adi.base.c │ │ ├── adi.c │ │ ├── adi.pluto.par.c │ │ ├── adi.pluto.seq.c │ │ ├── adi.pluto_ancc.seq_par.c │ │ ├── adi.polysyn.c │ │ ├── adi_profiling.c │ │ ├── clean │ │ ├── cmds │ │ ├── graphs │ │ ├── adi-par.dat │ │ ├── adi-par.eps │ │ ├── adi-par.plot │ │ ├── adi-par.png │ │ ├── adi.dat │ │ ├── adi.eps │ │ ├── adi.plot │ │ └── adi.png │ │ └── results.txt │ ├── align.c │ ├── arrcopy.c │ ├── axpy │ ├── axpy.bg.spec │ ├── axpy4.c │ ├── results │ │ └── bgl │ │ │ ├── 150600.error │ │ │ ├── 150600.output │ │ │ ├── 150601.error │ │ │ ├── 150601.output │ │ │ ├── 150602.error │ │ │ ├── 150602.output │ │ │ ├── 150603.error │ │ │ ├── 150603.output │ │ │ ├── 150604.error │ │ │ ├── 150604.output │ │ │ ├── 150605.error │ │ │ ├── 150605.output │ │ │ ├── 150606.error │ │ │ ├── 150606.output │ │ │ ├── 150607.error │ │ │ ├── 150607.output │ │ │ ├── 150608.error │ │ │ ├── 150608.output │ │ │ ├── _annot_perftest3115.c │ │ │ ├── _axpy4.c │ │ │ ├── _axpy4_10.c │ │ │ ├── _axpy4_100.c │ │ │ ├── _axpy4_1000.c │ │ │ ├── _axpy4_10000.c │ │ │ ├── _axpy4_100000.c │ │ │ ├── _axpy4_1000000.c │ │ │ ├── _axpy4_2000000.c │ │ │ ├── _axpy4_50000.c │ │ │ ├── _axpy4_500000.c │ │ │ ├── _axpy4_5000000.c │ │ │ ├── axpy.bg.spec │ │ │ ├── axpy10.bg.output.txt │ │ │ ├── axpy10.bg.spec │ │ │ ├── axpy100.bg.output.txt │ │ │ ├── axpy100.bg.spec │ │ │ ├── axpy1000.bg.output.txt │ │ │ ├── axpy1000.bg.spec │ │ │ ├── axpy10000.bg.output.txt │ │ │ ├── axpy10000.bg.spec │ │ │ ├── axpy100000.bg.output.txt │ │ │ ├── axpy100000.bg.spec │ │ │ ├── axpy1000000.bg.output.txt │ │ │ ├── axpy1000000.bg.spec │ │ │ ├── axpy2000000.bg.output.txt │ │ │ ├── axpy2000000.bg.spec │ │ │ ├── axpy4.c │ │ │ ├── axpy4_10.c │ │ │ ├── axpy4_100.c │ │ │ ├── axpy4_1000.c │ │ │ ├── axpy4_10000.c │ │ │ ├── axpy4_100000.c │ │ │ ├── axpy4_1000000.c │ │ │ ├── axpy4_2000000.c │ │ │ ├── axpy4_50000.c │ │ │ ├── axpy4_500000.c │ │ │ ├── axpy4_5000000.c │ │ │ ├── axpy50000.bg.output.txt │ │ │ ├── axpy50000.bg.spec │ │ │ ├── axpy500000.bg.output.txt │ │ │ ├── axpy500000.bg.spec │ │ │ ├── axpy5000000.bg.output.txt │ │ │ ├── axpy5000000.bg.spec │ │ │ └── second_set.tgz │ └── runjobs.py │ ├── axpy4.c │ ├── boundreplace.c │ ├── composite.c │ ├── fdtd │ ├── fdtd-1d.c │ ├── fdtd-2d.c │ ├── pluto │ │ ├── 1d.base.c │ │ ├── 1d.par.256.c │ │ ├── 1d.par.512.c │ │ ├── 1d.pluto-par.512.c │ │ ├── 1d.pluto-seq.512.c │ │ ├── 1d.seq.256.c │ │ ├── 1d.seq.512.c │ │ ├── 1d.tuned-par.512.c │ │ ├── 1d.tuned-seq.512.c │ │ ├── 2d.base.c │ │ ├── 2d.par.c │ │ ├── 2d.pluto-par.c │ │ ├── 2d.pluto-seq.c │ │ ├── 2d.seq.c │ │ ├── 2d.tuned-par.c │ │ ├── 2d.tuned-seq.c │ │ ├── result-fdtd.txt │ │ ├── run.1d.base │ │ ├── run.1d.par │ │ ├── run.1d.seq │ │ ├── run.2d.base │ │ ├── run.2d.par │ │ └── run.2d.seq │ └── pluto2 │ │ ├── a.out │ │ ├── clean │ │ ├── cmds │ │ ├── fdtd-2d.base.c │ │ ├── fdtd-2d.c │ │ ├── fdtd-2d.pluto.par.c │ │ ├── fdtd-2d.pluto.seq.c │ │ ├── fdtd-2d.pluto_ancc.seq_par.c │ │ ├── fdtd-2d.polysyn.c │ │ ├── fdtd-2d_profiling.c │ │ ├── graphs │ │ ├── fdtd-2d-par.dat │ │ ├── fdtd-2d-par.eps │ │ ├── fdtd-2d-par.plot │ │ ├── fdtd-2d-par.png │ │ ├── fdtd-2d.dat │ │ ├── fdtd-2d.eps │ │ ├── fdtd-2d.plot │ │ └── fdtd-2d.png │ │ └── results.txt │ ├── fdtd3 │ └── fdtd.c │ ├── gemver │ ├── gemver.c │ └── pluto │ │ ├── a.out │ │ ├── clean │ │ ├── cmds │ │ ├── gemver.base.c │ │ ├── gemver.c │ │ ├── gemver.pluto.par.c │ │ ├── gemver.pluto.seq.c │ │ ├── gemver.pluto_ancc.par.c │ │ ├── gemver.pluto_ancc.seq.c │ │ ├── gemver.polysyn.par.c │ │ ├── gemver.polysyn.seq.c │ │ ├── gemver_profiling.c │ │ ├── graphs │ │ ├── gemver-par.dat │ │ ├── gemver-par.eps │ │ ├── gemver-par.plot │ │ ├── gemver-par.png │ │ ├── gemver.dat │ │ ├── gemver.eps │ │ ├── gemver.plot │ │ └── gemver.png │ │ └── results.txt │ ├── hessian │ ├── haxpy3.c │ └── pluto │ │ ├── haxpy3.ancc.c │ │ ├── haxpy3.base.c │ │ ├── result.txt │ │ └── run.base │ ├── jacobi │ ├── jacobi-1d.c │ └── pluto │ │ ├── clean │ │ ├── cmds │ │ ├── jacobi-1d.base.c │ │ ├── jacobi-1d.c │ │ ├── jacobi-1d.pluto.par.c │ │ ├── jacobi-1d.pluto.seq.c │ │ ├── jacobi-1d.pluto_orio.seq_par.c │ │ ├── jacobi-1d.polysyn.c │ │ ├── jacobi-1d_decl_code.h │ │ ├── jacobi-1d_init_code.c │ │ ├── jacobi-1d_profiling.c │ │ ├── jacobi-1d_skeleton_code.c │ │ └── results.txt │ ├── lu │ ├── lu.c │ └── pluto │ │ ├── clean │ │ ├── graphs │ │ ├── lu-par.dat │ │ ├── lu-par.eps │ │ ├── lu-par.plot │ │ ├── lu-par.png │ │ ├── lu.dat │ │ ├── lu.eps │ │ ├── lu.plot │ │ └── lu.png │ │ ├── lu.base.c │ │ ├── lu.pluto.par.c │ │ ├── lu.pluto.par2d.c │ │ ├── lu.pluto.seq.c │ │ ├── lu.pluto_ancc.new_rtile.c │ │ ├── lu.pluto_ancc.old_rtile.c │ │ ├── lu.polysyn.c │ │ ├── lu.polysyn.notune.c │ │ ├── lu.tar.gz │ │ └── result.txt │ ├── mm │ ├── mm.c │ └── pluto │ │ ├── graphs │ │ ├── matmul-par.dat │ │ ├── matmul-par.eps │ │ ├── matmul-par.plot │ │ ├── matmul-par.png │ │ ├── matmul.dat │ │ ├── matmul.eps │ │ ├── matmul.plot │ │ └── matmul.png │ │ ├── mm.ancc.c │ │ ├── mm.base.c │ │ ├── mm.best-par.c │ │ ├── mm.best-seq.c │ │ ├── mm.mkl.c │ │ ├── result.txt │ │ ├── run.base │ │ ├── run.best │ │ └── run.mkl │ ├── mvt │ ├── mvt.c │ ├── mvt.fused.c │ └── pluto │ │ ├── mvt.ancc.c │ │ ├── mvt.base.c │ │ └── result.txt │ ├── permut1.c │ ├── permut2.c │ ├── petsc │ ├── Notes.txt │ ├── bratu.bg.spec │ ├── bratu.c │ ├── bratu.regtiling.bg.spec │ ├── bratu.spec │ ├── bratu_driver.c │ ├── inode.c │ ├── inode2.c │ ├── inode_orig.c │ └── results │ │ ├── _bratu_bgl.c │ │ ├── bratu.bgl.regtiling.txt │ │ ├── bratu.bgp.regtiling.txt │ │ └── bratu.regtiling.bg.spec │ ├── polysyn.c │ ├── polysyn_profiling.c │ ├── pragma.c │ ├── ptune.c │ ├── ptune.spec │ ├── ptune2.c │ ├── ptune2_decl_code.h │ ├── ptune2_init_code.c │ ├── ptune2_skeleton_code.c │ ├── regtile.c │ ├── scalarreplace.c │ ├── seidel │ ├── pluto │ │ ├── clean │ │ ├── cmds │ │ ├── graphs │ │ │ ├── seidel-par.dat │ │ │ ├── seidel-par.eps │ │ │ ├── seidel-par.plot │ │ │ ├── seidel-par.png │ │ │ ├── seidel.dat │ │ │ ├── seidel.eps │ │ │ ├── seidel.plot │ │ │ └── seidel.png │ │ ├── results.txt │ │ ├── seidel.base.c │ │ ├── seidel.pluto.par.c │ │ ├── seidel.pluto.par2d.c │ │ ├── seidel.pluto.seq.c │ │ ├── seidel.pluto_ancc.par.c │ │ ├── seidel.polysyn.c │ │ ├── seidel.tar.gz │ │ └── seidel_profiling.c │ └── seidel.c │ ├── simplyrewrite.py │ ├── spr │ ├── pluto │ │ ├── clean │ │ └── spr.c │ └── spr.c │ ├── symv │ ├── pluto │ │ ├── clean │ │ └── symv.c │ └── symv.c │ ├── tensor-contraction │ ├── 4d2d.c │ └── pluto │ │ ├── result.txt │ │ ├── run.base │ │ ├── tensor.4d2d.ancc.c │ │ └── tensor.4d2d.base.c │ ├── tile.c │ ├── trmm │ ├── pluto │ │ ├── clean │ │ ├── cmds │ │ ├── graphs │ │ │ ├── trmm-par.dat │ │ │ ├── trmm-par.eps │ │ │ ├── trmm-par.plot │ │ │ ├── trmm-par.png │ │ │ ├── trmm.dat │ │ │ ├── trmm.eps │ │ │ ├── trmm.plot │ │ │ └── trmm.png │ │ ├── results.txt │ │ ├── trmm.base.c │ │ ├── trmm.c │ │ ├── trmm.mkl.c │ │ ├── trmm.pluto.par.c │ │ ├── trmm.pluto.seq.c │ │ ├── trmm.pluto_ancc.seq_par.c │ │ ├── trmm.polysyn.c │ │ └── trmm_profiling.c │ └── trmm.c │ ├── trmv │ ├── pluto │ │ └── trmv.c │ └── trmv.c │ ├── unroll.c │ └── unrolljam.c ├── plutune ├── poly_hyperplane.png ├── polycc.sh.in ├── recloog ├── test-alt.sh ├── test-lbtile.sh ├── test.sh.in ├── test ├── .gitignore ├── 1dloop-invar.c ├── 2d-bidirec.c ├── Makefile ├── adi.f ├── adi.scop ├── adifull.c ├── advect3d1.f ├── banerjee.c ├── ccsd.c ├── cholesky.c ├── clauss.c ├── constdep.c ├── costfunc.c ├── deep.c ├── dep-1,1.c ├── dfp │ ├── fdtd-2d.c │ ├── scalar-distribute.c │ ├── typed-fuse-1.c │ ├── typed-fuse-2.c │ └── typed-fuse-3.c ├── diamond-tile-example.c ├── doitgen.c ├── durbin.c ├── durbin_param.c ├── dynprog_param.c ├── example.c ├── farkas.in ├── farkas2.in ├── fdtd-1d.scop ├── fdtd-2d.c ├── fdtd-2d.scop ├── fm1.in ├── fm2.in ├── fm3.in ├── fmri.c ├── func.c ├── fusion.c ├── fusion1.c ├── fusion10.c ├── fusion11.c ├── fusion2.c ├── fusion3.c ├── fusion4.c ├── fusion5.c ├── fusion6.c ├── fusion7.c ├── fusion8.c ├── fusion9.c ├── fw.c ├── gauss.c ├── gemver.c ├── gemver.scop ├── gemver1.c ├── griebl.c ├── haar.c ├── haar.cpp ├── haar1.c ├── hard.f ├── heat-2d.c ├── heat-2dp.c ├── heat-3d-imperfect.c ├── heat-3d.c ├── ind.c ├── intratileopt1.c ├── intratileopt2.c ├── intratileopt3.c ├── intratileopt4.c ├── intratileopt5.c ├── jacobi-1d-imper.c ├── jacobi-1d-mod.c ├── jacobi-1d-periodic-even.c ├── jacobi-1d-periodic.c ├── jacobi-2d-17pt.c ├── jacobi-2d-imper.c ├── jacobi-2d-imper.par2d.c ├── jacobi-2d-periodic.c ├── jacobi-2d.c ├── jacobi-3d-25pt.c ├── jacobi-3d-periodic.c ├── kmeans.c ├── largebounds.c ├── limlam.c ├── lu-nopivot.c ├── lu.c ├── luq.c ├── matmul-init.c ├── matmul-seq.c ├── matmul-seq2.c ├── matmul-seq3.c ├── matmul.c ├── matmul.par2d.c ├── matmult-imper.c ├── memmin.c ├── mot_detect_kern.c ├── mot_est.c ├── mpeg4-strip-down.c ├── mpeg4.bak.c ├── mpeg4.c ├── multi-loop-param.c ├── multi-stmt-2d-periodic.c ├── multi-stmt-lazy-lin-ind.c ├── multi-stmt-periodic.c ├── multi-stmt-stencil-seq.c ├── multidim-seq.c ├── multidim.c ├── mvt.c ├── mxv-seq.c ├── mxv-seq3.c ├── mxv.c ├── nas.c ├── negparam.c ├── nodep.c ├── noloop.c ├── nonconst.c ├── nonconst.in ├── param.c ├── pascal.c ├── poisson.c ├── polynomial.c ├── polyprod-func.c ├── polyprod-imper.c ├── polyprod-systol.c ├── priv2.c ├── qr.inner.c ├── read.c ├── reg_detect.c ├── reverse-iss.c ├── seidel.c ├── seq.c ├── shift.c ├── spatial.c ├── spu_k_classify_local_naive.c ├── svd_update.c ├── tce-2index-transform.c ├── tce-3index-transform.c ├── tce-4index-transform.c ├── test-per-cc-obj.c ├── test1.c ├── test2.c ├── test4.c ├── test5.c ├── test6.c ├── test7.c ├── test8.c ├── test_libpluto.c ├── testclos.c ├── tile.c ├── triangular.c ├── tricky1.c ├── tricky2.c ├── tricky3.c ├── tricky4.c ├── trisolv.c ├── tss1.c ├── unit_tests.c ├── unit_tests.in ├── unroll.c ├── unrolljam.c └── wavefront.c ├── tool ├── .gitignore ├── Makefile.am ├── ast_transform.c ├── ast_transform.h ├── constraints_polylib.c ├── constraints_polylib.h ├── main.cpp ├── osl_pluto.c ├── osl_pluto.h ├── pet_to_pluto.cpp ├── pluto_codegen_if.c └── pluto_codegen_if.h └── tuner ├── pltuner ├── pltuner-4d └── pltuner-cubic /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build_and_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/.github/workflows/build_and_test.yml -------------------------------------------------------------------------------- /.github/workflows/clang_format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/.github/workflows/clang_format.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/.gitmodules -------------------------------------------------------------------------------- /ACKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/ACKS -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/CodingStyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/doc/CodingStyle -------------------------------------------------------------------------------- /doc/SubmittingPatches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/doc/SubmittingPatches -------------------------------------------------------------------------------- /doc/pluto.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/doc/pluto.bib -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/.upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/.upload -------------------------------------------------------------------------------- /examples/3d7pt/3d7pt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/3d7pt/3d7pt.c -------------------------------------------------------------------------------- /examples/3d7pt/filename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/3d7pt/filename.sh -------------------------------------------------------------------------------- /examples/3d7pt/filename1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/3d7pt/filename1.sh -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/adi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/adi/.gitignore -------------------------------------------------------------------------------- /examples/adi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/adi/Makefile -------------------------------------------------------------------------------- /examples/adi/adi-full.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/adi/adi-full.c -------------------------------------------------------------------------------- /examples/adi/adi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/adi/adi.c -------------------------------------------------------------------------------- /examples/adi/decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/adi/decls.h -------------------------------------------------------------------------------- /examples/adi/papi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/adi/papi_defs.h -------------------------------------------------------------------------------- /examples/adi/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/adi/util.h -------------------------------------------------------------------------------- /examples/advect3d/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/advect3d/.gitignore -------------------------------------------------------------------------------- /examples/advect3d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/advect3d/Makefile -------------------------------------------------------------------------------- /examples/advect3d/adi.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/advect3d/adi.f -------------------------------------------------------------------------------- /examples/advect3d/advect3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/advect3d/advect3d.c -------------------------------------------------------------------------------- /examples/advect3d/advect3d.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/advect3d/advect3d.f -------------------------------------------------------------------------------- /examples/advect3d/advect3d1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/advect3d/advect3d1.f -------------------------------------------------------------------------------- /examples/advect3d/advect3d2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/advect3d/advect3d2.f -------------------------------------------------------------------------------- /examples/advect3d/advect3d3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/advect3d/advect3d3.f -------------------------------------------------------------------------------- /examples/advect3d/advect3d4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/advect3d/advect3d4.f -------------------------------------------------------------------------------- /examples/advect3d/driver.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/advect3d/driver.f -------------------------------------------------------------------------------- /examples/advect3d/papi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/advect3d/papi_defs.h -------------------------------------------------------------------------------- /examples/advect3d/swimm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/advect3d/swimm.f -------------------------------------------------------------------------------- /examples/advect3d/test.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/advect3d/test.f -------------------------------------------------------------------------------- /examples/apop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/apop/Makefile -------------------------------------------------------------------------------- /examples/apop/apop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/apop/apop.c -------------------------------------------------------------------------------- /examples/apop/tile.sizes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/apop/tile.sizes -------------------------------------------------------------------------------- /examples/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/common.mk -------------------------------------------------------------------------------- /examples/corcol/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/corcol/.gitignore -------------------------------------------------------------------------------- /examples/corcol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/corcol/Makefile -------------------------------------------------------------------------------- /examples/corcol/corcol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/corcol/corcol.c -------------------------------------------------------------------------------- /examples/corcol/corcol3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/corcol/corcol3.c -------------------------------------------------------------------------------- /examples/corcol/util.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/covcol/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/covcol/.gitignore -------------------------------------------------------------------------------- /examples/covcol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/covcol/Makefile -------------------------------------------------------------------------------- /examples/covcol/covcol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/covcol/covcol.c -------------------------------------------------------------------------------- /examples/covcol/util.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/dct/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/dct/.gitignore -------------------------------------------------------------------------------- /examples/dct/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/dct/Makefile -------------------------------------------------------------------------------- /examples/dct/dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/dct/dct.c -------------------------------------------------------------------------------- /examples/dct/papi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/dct/papi_defs.h -------------------------------------------------------------------------------- /examples/doitgen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/doitgen/.gitignore -------------------------------------------------------------------------------- /examples/doitgen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/doitgen/Makefile -------------------------------------------------------------------------------- /examples/doitgen/decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/doitgen/decls.h -------------------------------------------------------------------------------- /examples/doitgen/doitgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/doitgen/doitgen.c -------------------------------------------------------------------------------- /examples/doitgen/doitgen.dgemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/doitgen/doitgen.dgemm.c -------------------------------------------------------------------------------- /examples/doitgen/doitgen.mkl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/doitgen/doitgen.mkl.c -------------------------------------------------------------------------------- /examples/doitgen/fst/transformation_0.fst: -------------------------------------------------------------------------------- 1 | 1 2 | 3 3 | 0 1 2 4 | 256 5 | -------------------------------------------------------------------------------- /examples/doitgen/fst/transformation_1.fst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/doitgen/fst/transformation_1.fst -------------------------------------------------------------------------------- /examples/doitgen/fst/transformation_2.fst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/doitgen/fst/transformation_2.fst -------------------------------------------------------------------------------- /examples/doitgen/fst/transformation_3.fst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/doitgen/fst/transformation_3.fst -------------------------------------------------------------------------------- /examples/doitgen/papi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/doitgen/papi_defs.h -------------------------------------------------------------------------------- /examples/doitgen/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/doitgen/template.c -------------------------------------------------------------------------------- /examples/doitgen/tile.sizes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/doitgen/tile.sizes -------------------------------------------------------------------------------- /examples/doitgen/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/doitgen/util.h -------------------------------------------------------------------------------- /examples/dsyr2k/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/dsyr2k/.gitignore -------------------------------------------------------------------------------- /examples/dsyr2k/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/dsyr2k/Makefile -------------------------------------------------------------------------------- /examples/dsyr2k/dsyr2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/dsyr2k/dsyr2k.c -------------------------------------------------------------------------------- /examples/dsyr2k/papi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/dsyr2k/papi_defs.h -------------------------------------------------------------------------------- /examples/dsyr2k/tile.sizes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/dsyr2k/tile.sizes -------------------------------------------------------------------------------- /examples/dsyr2k/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/dsyr2k/util.h -------------------------------------------------------------------------------- /examples/dsyrk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/dsyrk/.gitignore -------------------------------------------------------------------------------- /examples/dsyrk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/dsyrk/Makefile -------------------------------------------------------------------------------- /examples/dsyrk/dsyrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/dsyrk/dsyrk.c -------------------------------------------------------------------------------- /examples/dsyrk/tile.sizes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/dsyrk/tile.sizes -------------------------------------------------------------------------------- /examples/dsyrk/util.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/fdtd-1d/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/fdtd-1d/.gitignore -------------------------------------------------------------------------------- /examples/fdtd-1d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/fdtd-1d/Makefile -------------------------------------------------------------------------------- /examples/fdtd-1d/data.decls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/fdtd-1d/data.decls -------------------------------------------------------------------------------- /examples/fdtd-1d/fdtd-1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/fdtd-1d/fdtd-1d.c -------------------------------------------------------------------------------- /examples/fdtd-1d/papi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/fdtd-1d/papi_defs.h -------------------------------------------------------------------------------- /examples/fdtd-1d/tile.sizes: -------------------------------------------------------------------------------- 1 | 256 2 | 256 3 | -------------------------------------------------------------------------------- /examples/fdtd-2d/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/fdtd-2d/.gitignore -------------------------------------------------------------------------------- /examples/fdtd-2d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/fdtd-2d/Makefile -------------------------------------------------------------------------------- /examples/fdtd-2d/fdtd-2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/fdtd-2d/fdtd-2d.c -------------------------------------------------------------------------------- /examples/fdtd-2d/fdtd-2d.sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/fdtd-2d/fdtd-2d.sched.c -------------------------------------------------------------------------------- /examples/fdtd-2d/papi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/fdtd-2d/papi_defs.h -------------------------------------------------------------------------------- /examples/fdtd-2d/test.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/floyd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/floyd/Makefile -------------------------------------------------------------------------------- /examples/floyd/floyd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/floyd/floyd.c -------------------------------------------------------------------------------- /examples/game-of-life/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/game-of-life/Makefile -------------------------------------------------------------------------------- /examples/game-of-life/life.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/game-of-life/life.c -------------------------------------------------------------------------------- /examples/game-of-life/tile.sizes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/game-of-life/tile.sizes -------------------------------------------------------------------------------- /examples/gemver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/gemver/.gitignore -------------------------------------------------------------------------------- /examples/gemver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/gemver/Makefile -------------------------------------------------------------------------------- /examples/gemver/fst/transformation_0.fst: -------------------------------------------------------------------------------- 1 | 1 2 | 4 3 | 0 1 2 3 4 | 256 5 | -------------------------------------------------------------------------------- /examples/gemver/fst/transformation_1.fst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/gemver/fst/transformation_1.fst -------------------------------------------------------------------------------- /examples/gemver/fst/transformation_2.fst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/gemver/fst/transformation_2.fst -------------------------------------------------------------------------------- /examples/gemver/fst/transformation_3.fst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/gemver/fst/transformation_3.fst -------------------------------------------------------------------------------- /examples/gemver/fst/transformation_4.fst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/gemver/fst/transformation_4.fst -------------------------------------------------------------------------------- /examples/gemver/fst/transformation_5.fst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/gemver/fst/transformation_5.fst -------------------------------------------------------------------------------- /examples/gemver/fst/transformation_6.fst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/gemver/fst/transformation_6.fst -------------------------------------------------------------------------------- /examples/gemver/fst/transformation_7.fst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/gemver/fst/transformation_7.fst -------------------------------------------------------------------------------- /examples/gemver/gemver.blas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/gemver/gemver.blas.c -------------------------------------------------------------------------------- /examples/gemver/gemver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/gemver/gemver.c -------------------------------------------------------------------------------- /examples/gemver/gemver.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/gemver/gemver.f -------------------------------------------------------------------------------- /examples/gemver/papi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/gemver/papi_defs.h -------------------------------------------------------------------------------- /examples/gemver/tile.sizes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/gemver/tile.sizes -------------------------------------------------------------------------------- /examples/gemver/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/gemver/util.h -------------------------------------------------------------------------------- /examples/heat-1d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/heat-1d/Makefile -------------------------------------------------------------------------------- /examples/heat-1d/heat-1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/heat-1d/heat-1d.c -------------------------------------------------------------------------------- /examples/heat-1d/tile.sizes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/heat-1d/tile.sizes -------------------------------------------------------------------------------- /examples/heat-2d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/heat-2d/Makefile -------------------------------------------------------------------------------- /examples/heat-2d/heat-2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/heat-2d/heat-2d.c -------------------------------------------------------------------------------- /examples/heat-2d/heat-2d.omp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/heat-2d/heat-2d.omp.c -------------------------------------------------------------------------------- /examples/heat-2d/tile.sizes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/heat-2d/tile.sizes -------------------------------------------------------------------------------- /examples/heat-3d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/heat-3d/Makefile -------------------------------------------------------------------------------- /examples/heat-3d/heat-3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/heat-3d/heat-3d.c -------------------------------------------------------------------------------- /examples/heat-3d/tile.sizes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/heat-3d/tile.sizes -------------------------------------------------------------------------------- /examples/jacobi-1d-imper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/jacobi-1d-imper/.gitignore -------------------------------------------------------------------------------- /examples/jacobi-1d-imper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/jacobi-1d-imper/Makefile -------------------------------------------------------------------------------- /examples/jacobi-1d-imper/jacobi-1d-imper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/jacobi-1d-imper/jacobi-1d-imper.c -------------------------------------------------------------------------------- /examples/jacobi-1d-imper/jacobi-1d-imper.limlam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/jacobi-1d-imper/jacobi-1d-imper.limlam.c -------------------------------------------------------------------------------- /examples/jacobi-1d-imper/jacobi-1d-imper.sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/jacobi-1d-imper/jacobi-1d-imper.sched.c -------------------------------------------------------------------------------- /examples/jacobi-1d-imper/jacobi-imper.limlam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/jacobi-1d-imper/jacobi-imper.limlam.c -------------------------------------------------------------------------------- /examples/jacobi-1d-imper/papi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/jacobi-1d-imper/papi_defs.h -------------------------------------------------------------------------------- /examples/jacobi-1d-imper/tile.sizes: -------------------------------------------------------------------------------- 1 | 250 2 | 1024 3 | -------------------------------------------------------------------------------- /examples/jacobi-1d-imper/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/jacobi-1d-imper/util.h -------------------------------------------------------------------------------- /examples/jacobi-2d-imper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/jacobi-2d-imper/.gitignore -------------------------------------------------------------------------------- /examples/jacobi-2d-imper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/jacobi-2d-imper/Makefile -------------------------------------------------------------------------------- /examples/jacobi-2d-imper/jacobi-2d-imper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/jacobi-2d-imper/jacobi-2d-imper.c -------------------------------------------------------------------------------- /examples/jacobi-2d-imper/papi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/jacobi-2d-imper/papi_defs.h -------------------------------------------------------------------------------- /examples/lbm/fpc/d2q9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/lbm/fpc/d2q9/Makefile -------------------------------------------------------------------------------- /examples/lbm/fpc/d2q9/fpc_d2q9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/lbm/fpc/d2q9/fpc_d2q9.c -------------------------------------------------------------------------------- /examples/lbm/ldc/d2q9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/lbm/ldc/d2q9/Makefile -------------------------------------------------------------------------------- /examples/lbm/ldc/d2q9/ldc_d2q9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/lbm/ldc/d2q9/ldc_d2q9.c -------------------------------------------------------------------------------- /examples/lbm/ldc/d3q19/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/lbm/ldc/d3q19/Makefile -------------------------------------------------------------------------------- /examples/lbm/ldc/d3q19/ldc_d3q19.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/lbm/ldc/d3q19/ldc_d3q19.c -------------------------------------------------------------------------------- /examples/lbm/ldc/d3q27/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/lbm/ldc/d3q27/Makefile -------------------------------------------------------------------------------- /examples/lbm/ldc/d3q27/ldc_d3q27.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/lbm/ldc/d3q27/ldc_d3q27.c -------------------------------------------------------------------------------- /examples/lbm/mrt/d2q9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/lbm/mrt/d2q9/Makefile -------------------------------------------------------------------------------- /examples/lbm/mrt/d2q9/mrt_ldc_d2q9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/lbm/mrt/d2q9/mrt_ldc_d2q9.c -------------------------------------------------------------------------------- /examples/lbm/poiseuille/d2q9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/lbm/poiseuille/d2q9/Makefile -------------------------------------------------------------------------------- /examples/lbm/poiseuille/d2q9/poiseuille_d2q9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/lbm/poiseuille/d2q9/poiseuille_d2q9.c -------------------------------------------------------------------------------- /examples/lu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/lu/.gitignore -------------------------------------------------------------------------------- /examples/lu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/lu/Makefile -------------------------------------------------------------------------------- /examples/lu/lu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/lu/lu.c -------------------------------------------------------------------------------- /examples/lu/lu.sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/lu/lu.sched.c -------------------------------------------------------------------------------- /examples/lu/papi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/lu/papi_defs.h -------------------------------------------------------------------------------- /examples/lu/tile.sizes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/lu/tile.sizes -------------------------------------------------------------------------------- /examples/matmul-init/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/matmul-init/.gitignore -------------------------------------------------------------------------------- /examples/matmul-init/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/matmul-init/Makefile -------------------------------------------------------------------------------- /examples/matmul-init/decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/matmul-init/decls.h -------------------------------------------------------------------------------- /examples/matmul-init/matmul-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/matmul-init/matmul-init.c -------------------------------------------------------------------------------- /examples/matmul-init/papi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/matmul-init/papi_defs.h -------------------------------------------------------------------------------- /examples/matmul-init/tile.sizes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/matmul-init/tile.sizes -------------------------------------------------------------------------------- /examples/matmul-init/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/matmul-init/util.h -------------------------------------------------------------------------------- /examples/matmul/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/matmul/.gitignore -------------------------------------------------------------------------------- /examples/matmul/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/matmul/Makefile -------------------------------------------------------------------------------- /examples/matmul/dgemm.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/matmul/dgemm.f -------------------------------------------------------------------------------- /examples/matmul/matmul.blas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/matmul/matmul.blas.c -------------------------------------------------------------------------------- /examples/matmul/matmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/matmul/matmul.c -------------------------------------------------------------------------------- /examples/matmul/papi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/matmul/papi_defs.h -------------------------------------------------------------------------------- /examples/matmul/tile.sizes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/matmul/tile.sizes -------------------------------------------------------------------------------- /examples/mvt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/mvt/.gitignore -------------------------------------------------------------------------------- /examples/mvt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/mvt/Makefile -------------------------------------------------------------------------------- /examples/mvt/decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/mvt/decls.h -------------------------------------------------------------------------------- /examples/mvt/mvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/mvt/mvt.c -------------------------------------------------------------------------------- /examples/mvt/papi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/mvt/papi_defs.h -------------------------------------------------------------------------------- /examples/mvt/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/mvt/util.h -------------------------------------------------------------------------------- /examples/pca/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/pca/.gitignore -------------------------------------------------------------------------------- /examples/pca/.pca.c.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/pca/.pca.c.swp -------------------------------------------------------------------------------- /examples/pca/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/pca/Makefile -------------------------------------------------------------------------------- /examples/pca/data.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/pca/decls.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/pca/pca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/pca/pca.c -------------------------------------------------------------------------------- /examples/pca/util.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/seidel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/seidel/.gitignore -------------------------------------------------------------------------------- /examples/seidel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/seidel/Makefile -------------------------------------------------------------------------------- /examples/seidel/papi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/seidel/papi_defs.h -------------------------------------------------------------------------------- /examples/seidel/seidel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/seidel/seidel.c -------------------------------------------------------------------------------- /examples/seidel/seidel.sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/seidel/seidel.sched.c -------------------------------------------------------------------------------- /examples/seidel/tile.sizes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/seidel/tile.sizes -------------------------------------------------------------------------------- /examples/seidel/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/seidel/util.h -------------------------------------------------------------------------------- /examples/ssymm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/ssymm/.gitignore -------------------------------------------------------------------------------- /examples/ssymm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/ssymm/Makefile -------------------------------------------------------------------------------- /examples/ssymm/ssymm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/ssymm/ssymm.c -------------------------------------------------------------------------------- /examples/ssymm/util.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/strmm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/strmm/.gitignore -------------------------------------------------------------------------------- /examples/strmm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/strmm/Makefile -------------------------------------------------------------------------------- /examples/strmm/papi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/strmm/papi_defs.h -------------------------------------------------------------------------------- /examples/strmm/strmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/strmm/strmm.c -------------------------------------------------------------------------------- /examples/strmm/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/strmm/util.h -------------------------------------------------------------------------------- /examples/strsm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/strsm/.gitignore -------------------------------------------------------------------------------- /examples/strsm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/strsm/Makefile -------------------------------------------------------------------------------- /examples/strsm/strsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/strsm/strsm.c -------------------------------------------------------------------------------- /examples/tce/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/tce/.gitignore -------------------------------------------------------------------------------- /examples/tce/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/tce/Makefile -------------------------------------------------------------------------------- /examples/tce/data.decls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/tce/data.decls -------------------------------------------------------------------------------- /examples/tce/papi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/tce/papi_defs.h -------------------------------------------------------------------------------- /examples/tce/tce-4index-transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/tce/tce-4index-transform.c -------------------------------------------------------------------------------- /examples/template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/template/.gitignore -------------------------------------------------------------------------------- /examples/template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/template/Makefile -------------------------------------------------------------------------------- /examples/template/papi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/template/papi_defs.h -------------------------------------------------------------------------------- /examples/template/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/template/template.c -------------------------------------------------------------------------------- /examples/template/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/template/util.h -------------------------------------------------------------------------------- /examples/tmm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/tmm/.gitignore -------------------------------------------------------------------------------- /examples/tmm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/tmm/Makefile -------------------------------------------------------------------------------- /examples/tmm/decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/tmm/decls.h -------------------------------------------------------------------------------- /examples/tmm/tmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/tmm/tmm.c -------------------------------------------------------------------------------- /examples/tmm/util.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/trisolv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/trisolv/.gitignore -------------------------------------------------------------------------------- /examples/trisolv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/trisolv/Makefile -------------------------------------------------------------------------------- /examples/trisolv/decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/trisolv/decls.h -------------------------------------------------------------------------------- /examples/trisolv/trisolv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/trisolv/trisolv.c -------------------------------------------------------------------------------- /examples/trisolv/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/examples/trisolv/util.h -------------------------------------------------------------------------------- /getversion.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/getversion.sh.in -------------------------------------------------------------------------------- /include/pluto/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/include/pluto/matrix.h -------------------------------------------------------------------------------- /include/pluto/pluto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/include/pluto/pluto.h -------------------------------------------------------------------------------- /inscop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/inscop -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/.gitignore -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/constraints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/constraints.c -------------------------------------------------------------------------------- /lib/constraints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/constraints.h -------------------------------------------------------------------------------- /lib/constraints_isl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/constraints_isl.c -------------------------------------------------------------------------------- /lib/ddg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/ddg.c -------------------------------------------------------------------------------- /lib/ddg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/ddg.h -------------------------------------------------------------------------------- /lib/framework-dfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/framework-dfp.c -------------------------------------------------------------------------------- /lib/framework.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/framework.cpp -------------------------------------------------------------------------------- /lib/gurobi-plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/gurobi-plugin.c -------------------------------------------------------------------------------- /lib/isl_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/isl_support.c -------------------------------------------------------------------------------- /lib/isl_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/isl_support.h -------------------------------------------------------------------------------- /lib/iss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/iss.c -------------------------------------------------------------------------------- /lib/libpluto_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/libpluto_dummy.c -------------------------------------------------------------------------------- /lib/math_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/math_support.c -------------------------------------------------------------------------------- /lib/math_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/math_support.h -------------------------------------------------------------------------------- /lib/pet_to_pluto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/pet_to_pluto.h -------------------------------------------------------------------------------- /lib/pluto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/pluto.c -------------------------------------------------------------------------------- /lib/pluto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/pluto.h -------------------------------------------------------------------------------- /lib/plutolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/plutolib.c -------------------------------------------------------------------------------- /lib/polyloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/polyloop.c -------------------------------------------------------------------------------- /lib/post_transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/post_transform.c -------------------------------------------------------------------------------- /lib/post_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/post_transform.h -------------------------------------------------------------------------------- /lib/program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/program.cpp -------------------------------------------------------------------------------- /lib/program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/program.h -------------------------------------------------------------------------------- /lib/tile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/tile.c -------------------------------------------------------------------------------- /lib/tile_size_selection_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/tile_size_selection_model.cpp -------------------------------------------------------------------------------- /lib/tile_size_selection_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/tile_size_selection_model.h -------------------------------------------------------------------------------- /lib/transforms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/transforms.c -------------------------------------------------------------------------------- /lib/transforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/lib/transforms.h -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/m4/.gitignore -------------------------------------------------------------------------------- /m4/ax_cxx_compile_stdcxx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/m4/ax_cxx_compile_stdcxx.m4 -------------------------------------------------------------------------------- /orio-0.1.0/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/COPYING -------------------------------------------------------------------------------- /orio-0.1.0/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/PKG-INFO -------------------------------------------------------------------------------- /orio-0.1.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/README -------------------------------------------------------------------------------- /orio-0.1.0/doc/orio_logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/doc/orio_logo.eps -------------------------------------------------------------------------------- /orio-0.1.0/doc/orio_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/doc/orio_logo.jpg -------------------------------------------------------------------------------- /orio-0.1.0/orcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/orcc -------------------------------------------------------------------------------- /orio-0.1.0/orf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/orf -------------------------------------------------------------------------------- /orio-0.1.0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/setup.py -------------------------------------------------------------------------------- /orio-0.1.0/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/main/ann_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/main/ann_parser.py -------------------------------------------------------------------------------- /orio-0.1.0/src/main/cmd_line_opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/main/cmd_line_opts.py -------------------------------------------------------------------------------- /orio-0.1.0/src/main/code_frag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/main/code_frag.py -------------------------------------------------------------------------------- /orio-0.1.0/src/main/dyn_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/main/dyn_loader.py -------------------------------------------------------------------------------- /orio-0.1.0/src/main/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/main/main.py -------------------------------------------------------------------------------- /orio-0.1.0/src/main/opt_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/main/opt_driver.py -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tspec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tspec/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/main/tspec/eval.py -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tspec/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/main/tspec/parser.py -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tspec/tspec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/main/tspec/tspec.py -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tspec/tune_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/main/tspec/tune_info.py -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tuner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tuner/ptest_codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/main/tuner/ptest_codegen.py -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tuner/ptest_codegen_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/main/tuner/ptest_codegen_basic.py -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tuner/ptest_codegen_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/main/tuner/ptest_codegen_parallel.py -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tuner/ptest_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/main/tuner/ptest_driver.py -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tuner/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tuner/search/annealing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tuner/search/annealing/annealing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/main/tuner/search/annealing/annealing.py -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tuner/search/exhaustive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tuner/search/exhaustive/exhaustive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/main/tuner/search/exhaustive/exhaustive.py -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tuner/search/random/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tuner/search/random/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/main/tuner/search/random/random.py -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tuner/search/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/main/tuner/search/search.py -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tuner/search/simplex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tuner/search/simplex/simplex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/main/tuner/search/simplex/simplex.py -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tuner/skeleton_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/main/tuner/skeleton_code.py -------------------------------------------------------------------------------- /orio-0.1.0/src/main/tuner/tuner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/main/tuner/tuner.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/module/align/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/module/align/align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/align/align.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/align/codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/align/codegen.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/align/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/align/parser.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/align/variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/align/variable.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/ast.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/ast_lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/ast_lib/common_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/ast_lib/common_lib.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/ast_lib/constant_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/ast_lib/constant_folder.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/ast_lib/forloop_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/ast_lib/forloop_lib.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/codegen.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/loop.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/parser.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/arrcopy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/arrcopy/arrcopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/submodule/arrcopy/arrcopy.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/arrcopy/transformator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/submodule/arrcopy/transformator.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/boundreplace/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/boundreplace/boundreplace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/submodule/boundreplace/boundreplace.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/boundreplace/transformator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/submodule/boundreplace/transformator.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/composite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/composite/composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/submodule/composite/composite.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/composite/transformator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/submodule/composite/transformator.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/permut/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/permut/permut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/submodule/permut/permut.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/permut/transformator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/submodule/permut/transformator.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/pragma/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/pragma/pragma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/submodule/pragma/pragma.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/pragma/transformator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/submodule/pragma/transformator.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/regtile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/regtile/regtile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/submodule/regtile/regtile.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/regtile/semant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/submodule/regtile/semant.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/regtile/transformator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/submodule/regtile/transformator.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/scalarreplace/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/scalarreplace/scalarreplace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/submodule/scalarreplace/scalarreplace.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/scalarreplace/transformator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/submodule/scalarreplace/transformator.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/submodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/submodule/submodule.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/tile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/tile/tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/submodule/tile/tile.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/tile/transformator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/submodule/tile/transformator.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/unroll/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/unroll/unroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/submodule/unroll/unroll.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/unrolljam/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/unrolljam/transformator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/submodule/unrolljam/transformator.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/submodule/unrolljam/unrolljam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/submodule/unrolljam/unrolljam.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/loop/transformator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/loop/transformator.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/module.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/polysyn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/module/polysyn/cloop_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/polysyn/cloop_parser.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/polysyn/macro_expander.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/polysyn/macro_expander.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/polysyn/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/polysyn/parser.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/polysyn/poly_transformator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/polysyn/poly_transformator.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/polysyn/polysyn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/polysyn/polysyn.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/polysyn/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/polysyn/profiler.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/polysyn/syn_transformator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/polysyn/syn_transformator.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/polysyn/transf_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/polysyn/transf_info.py -------------------------------------------------------------------------------- /orio-0.1.0/src/module/simplyrewrite/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /orio-0.1.0/src/module/simplyrewrite/simplyrewrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/module/simplyrewrite/simplyrewrite.py -------------------------------------------------------------------------------- /orio-0.1.0/src/tool/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/tool/README -------------------------------------------------------------------------------- /orio-0.1.0/src/tool/ZestyParser/AHT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/tool/ZestyParser/AHT.py -------------------------------------------------------------------------------- /orio-0.1.0/src/tool/ZestyParser/DebuggingParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/tool/ZestyParser/DebuggingParser.py -------------------------------------------------------------------------------- /orio-0.1.0/src/tool/ZestyParser/Helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/tool/ZestyParser/Helpers.py -------------------------------------------------------------------------------- /orio-0.1.0/src/tool/ZestyParser/Parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/tool/ZestyParser/Parser.py -------------------------------------------------------------------------------- /orio-0.1.0/src/tool/ZestyParser/Tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/tool/ZestyParser/Tags.py -------------------------------------------------------------------------------- /orio-0.1.0/src/tool/ZestyParser/Tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/tool/ZestyParser/Tokens.py -------------------------------------------------------------------------------- /orio-0.1.0/src/tool/ZestyParser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/tool/ZestyParser/__init__.py -------------------------------------------------------------------------------- /orio-0.1.0/src/tool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/tool/ply/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/src/tool/ply/lex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/tool/ply/lex.py -------------------------------------------------------------------------------- /orio-0.1.0/src/tool/ply/yacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/src/tool/ply/yacc.py -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/README -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/_regtile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/_regtile.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/adi/adi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/adi/adi.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/adi/pluto/adi.base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/adi/pluto/adi.base.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/adi/pluto/adi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/adi/pluto/adi.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/adi/pluto/adi.pluto.par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/adi/pluto/adi.pluto.par.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/adi/pluto/adi.pluto.seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/adi/pluto/adi.pluto.seq.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/adi/pluto/adi.pluto_ancc.seq_par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/adi/pluto/adi.pluto_ancc.seq_par.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/adi/pluto/adi.polysyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/adi/pluto/adi.polysyn.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/adi/pluto/adi_profiling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/adi/pluto/adi_profiling.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/adi/pluto/clean: -------------------------------------------------------------------------------- 1 | 2 | rm *~ _annot* parsetab.* a.out _* 3 | 4 | -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/adi/pluto/cmds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/adi/pluto/cmds -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/adi/pluto/graphs/adi-par.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/adi/pluto/graphs/adi-par.dat -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/adi/pluto/graphs/adi-par.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/adi/pluto/graphs/adi-par.eps -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/adi/pluto/graphs/adi-par.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/adi/pluto/graphs/adi-par.plot -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/adi/pluto/graphs/adi-par.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/adi/pluto/graphs/adi-par.png -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/adi/pluto/graphs/adi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/adi/pluto/graphs/adi.dat -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/adi/pluto/graphs/adi.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/adi/pluto/graphs/adi.eps -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/adi/pluto/graphs/adi.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/adi/pluto/graphs/adi.plot -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/adi/pluto/graphs/adi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/adi/pluto/graphs/adi.png -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/adi/pluto/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/adi/pluto/results.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/align.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/arrcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/arrcopy.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/axpy.bg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/axpy.bg.spec -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/axpy4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/axpy4.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/150600.error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/150600.error -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/150600.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/150600.output -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/150601.error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/150601.error -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/150601.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/150601.output -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/150602.error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/150602.error -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/150602.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/150602.output -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/150603.error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/150603.error -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/150603.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/150603.output -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/150604.error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/150604.error -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/150604.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/150604.output -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/150605.error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/150605.error -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/150605.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/150605.output -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/150606.error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/150606.error -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/150606.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/150606.output -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/150607.error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/150607.error -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/150607.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/150607.output -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/150608.error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/150608.error -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/150608.output: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/_annot_perftest3115.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/_annot_perftest3115.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/_axpy4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/_axpy4.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/_axpy4_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/_axpy4_10.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/_axpy4_100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/_axpy4_100.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/_axpy4_1000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/_axpy4_1000.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/_axpy4_10000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/_axpy4_10000.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/_axpy4_100000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/_axpy4_100000.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/_axpy4_1000000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/_axpy4_1000000.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/_axpy4_2000000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/_axpy4_2000000.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/_axpy4_50000.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/_axpy4_500000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/_axpy4_500000.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/_axpy4_5000000.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy.bg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy.bg.spec -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy10.bg.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy10.bg.output.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy10.bg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy10.bg.spec -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy100.bg.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy100.bg.output.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy100.bg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy100.bg.spec -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy1000.bg.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy1000.bg.output.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy1000.bg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy1000.bg.spec -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy10000.bg.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy10000.bg.output.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy10000.bg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy10000.bg.spec -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy100000.bg.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy100000.bg.output.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy100000.bg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy100000.bg.spec -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy1000000.bg.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy1000000.bg.output.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy1000000.bg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy1000000.bg.spec -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy2000000.bg.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy2000000.bg.output.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy2000000.bg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy2000000.bg.spec -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy4.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy4_10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy4_10.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy4_100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy4_100.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy4_1000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy4_1000.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy4_10000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy4_10000.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy4_100000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy4_100000.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy4_1000000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy4_1000000.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy4_2000000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy4_2000000.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy4_50000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy4_50000.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy4_500000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy4_500000.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy4_5000000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy4_5000000.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy50000.bg.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy50000.bg.output.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy50000.bg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy50000.bg.spec -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy500000.bg.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy500000.bg.output.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy500000.bg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy500000.bg.spec -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy5000000.bg.output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy5000000.bg.output.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/axpy5000000.bg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/axpy5000000.bg.spec -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/results/bgl/second_set.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/results/bgl/second_set.tgz -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy/runjobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy/runjobs.py -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/axpy4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/axpy4.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/boundreplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/boundreplace.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/composite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/composite.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/fdtd-1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/fdtd-1d.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/fdtd-2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/fdtd-2d.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/1d.base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/1d.base.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/1d.par.256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/1d.par.256.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/1d.par.512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/1d.par.512.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/1d.pluto-par.512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/1d.pluto-par.512.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/1d.pluto-seq.512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/1d.pluto-seq.512.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/1d.seq.256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/1d.seq.256.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/1d.seq.512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/1d.seq.512.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/1d.tuned-par.512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/1d.tuned-par.512.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/1d.tuned-seq.512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/1d.tuned-seq.512.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/2d.base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/2d.base.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/2d.par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/2d.par.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/2d.pluto-par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/2d.pluto-par.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/2d.pluto-seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/2d.pluto-seq.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/2d.seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/2d.seq.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/2d.tuned-par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/2d.tuned-par.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/2d.tuned-seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/2d.tuned-seq.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/result-fdtd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/result-fdtd.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/run.1d.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/run.1d.base -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/run.1d.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/run.1d.par -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/run.1d.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/run.1d.seq -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/run.2d.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/run.2d.base -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/run.2d.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/run.2d.par -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto/run.2d.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto/run.2d.seq -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto2/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto2/a.out -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto2/clean: -------------------------------------------------------------------------------- 1 | 2 | rm *~ _annot* parsetab.* a.out _* 3 | 4 | -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto2/cmds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto2/cmds -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto2/fdtd-2d.base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto2/fdtd-2d.base.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto2/fdtd-2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto2/fdtd-2d.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto2/fdtd-2d.pluto.par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto2/fdtd-2d.pluto.par.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto2/fdtd-2d.pluto.seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto2/fdtd-2d.pluto.seq.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto2/fdtd-2d.pluto_ancc.seq_par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto2/fdtd-2d.pluto_ancc.seq_par.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto2/fdtd-2d.polysyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto2/fdtd-2d.polysyn.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto2/fdtd-2d_profiling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto2/fdtd-2d_profiling.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto2/graphs/fdtd-2d-par.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto2/graphs/fdtd-2d-par.dat -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto2/graphs/fdtd-2d-par.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto2/graphs/fdtd-2d-par.eps -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto2/graphs/fdtd-2d-par.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto2/graphs/fdtd-2d-par.plot -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto2/graphs/fdtd-2d-par.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto2/graphs/fdtd-2d-par.png -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto2/graphs/fdtd-2d.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto2/graphs/fdtd-2d.dat -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto2/graphs/fdtd-2d.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto2/graphs/fdtd-2d.eps -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto2/graphs/fdtd-2d.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto2/graphs/fdtd-2d.plot -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto2/graphs/fdtd-2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto2/graphs/fdtd-2d.png -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd/pluto2/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd/pluto2/results.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/fdtd3/fdtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/fdtd3/fdtd.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/gemver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/gemver/gemver.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/pluto/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/gemver/pluto/a.out -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/pluto/clean: -------------------------------------------------------------------------------- 1 | 2 | rm *~ _annot* parsetab.* a.out _* 3 | 4 | -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/pluto/cmds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/gemver/pluto/cmds -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/pluto/gemver.base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/gemver/pluto/gemver.base.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/pluto/gemver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/gemver/pluto/gemver.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/pluto/gemver.pluto.par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/gemver/pluto/gemver.pluto.par.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/pluto/gemver.pluto.seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/gemver/pluto/gemver.pluto.seq.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/pluto/gemver.pluto_ancc.par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/gemver/pluto/gemver.pluto_ancc.par.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/pluto/gemver.pluto_ancc.seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/gemver/pluto/gemver.pluto_ancc.seq.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/pluto/gemver.polysyn.par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/gemver/pluto/gemver.polysyn.par.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/pluto/gemver.polysyn.seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/gemver/pluto/gemver.polysyn.seq.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/pluto/gemver_profiling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/gemver/pluto/gemver_profiling.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/pluto/graphs/gemver-par.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/gemver/pluto/graphs/gemver-par.dat -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/pluto/graphs/gemver-par.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/gemver/pluto/graphs/gemver-par.eps -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/pluto/graphs/gemver-par.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/gemver/pluto/graphs/gemver-par.plot -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/pluto/graphs/gemver-par.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/gemver/pluto/graphs/gemver-par.png -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/pluto/graphs/gemver.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/gemver/pluto/graphs/gemver.dat -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/pluto/graphs/gemver.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/gemver/pluto/graphs/gemver.eps -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/pluto/graphs/gemver.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/gemver/pluto/graphs/gemver.plot -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/pluto/graphs/gemver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/gemver/pluto/graphs/gemver.png -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/gemver/pluto/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/gemver/pluto/results.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/hessian/haxpy3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/hessian/haxpy3.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/hessian/pluto/haxpy3.ancc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/hessian/pluto/haxpy3.ancc.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/hessian/pluto/haxpy3.base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/hessian/pluto/haxpy3.base.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/hessian/pluto/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/hessian/pluto/result.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/hessian/pluto/run.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/hessian/pluto/run.base -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/jacobi/jacobi-1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/jacobi/jacobi-1d.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/jacobi/pluto/clean: -------------------------------------------------------------------------------- 1 | 2 | rm *~ _* parsetab.* a.out 3 | 4 | -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/jacobi/pluto/cmds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/jacobi/pluto/cmds -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/jacobi/pluto/jacobi-1d.base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/jacobi/pluto/jacobi-1d.base.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/jacobi/pluto/jacobi-1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/jacobi/pluto/jacobi-1d.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/jacobi/pluto/jacobi-1d.pluto.par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/jacobi/pluto/jacobi-1d.pluto.par.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/jacobi/pluto/jacobi-1d.pluto.seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/jacobi/pluto/jacobi-1d.pluto.seq.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/jacobi/pluto/jacobi-1d.pluto_orio.seq_par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/jacobi/pluto/jacobi-1d.pluto_orio.seq_par.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/jacobi/pluto/jacobi-1d.polysyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/jacobi/pluto/jacobi-1d.polysyn.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/jacobi/pluto/jacobi-1d_decl_code.h: -------------------------------------------------------------------------------- 1 | double a[T][N]; 2 | -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/jacobi/pluto/jacobi-1d_init_code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/jacobi/pluto/jacobi-1d_init_code.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/jacobi/pluto/jacobi-1d_profiling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/jacobi/pluto/jacobi-1d_profiling.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/jacobi/pluto/jacobi-1d_skeleton_code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/jacobi/pluto/jacobi-1d_skeleton_code.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/jacobi/pluto/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/jacobi/pluto/results.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/lu/lu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/lu/lu.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/lu/pluto/clean: -------------------------------------------------------------------------------- 1 | 2 | rm *~ _annot* parsetab.* -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/lu/pluto/graphs/lu-par.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/lu/pluto/graphs/lu-par.dat -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/lu/pluto/graphs/lu-par.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/lu/pluto/graphs/lu-par.eps -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/lu/pluto/graphs/lu-par.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/lu/pluto/graphs/lu-par.plot -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/lu/pluto/graphs/lu-par.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/lu/pluto/graphs/lu-par.png -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/lu/pluto/graphs/lu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/lu/pluto/graphs/lu.dat -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/lu/pluto/graphs/lu.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/lu/pluto/graphs/lu.eps -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/lu/pluto/graphs/lu.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/lu/pluto/graphs/lu.plot -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/lu/pluto/graphs/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/lu/pluto/graphs/lu.png -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/lu/pluto/lu.base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/lu/pluto/lu.base.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/lu/pluto/lu.pluto.par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/lu/pluto/lu.pluto.par.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/lu/pluto/lu.pluto.par2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/lu/pluto/lu.pluto.par2d.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/lu/pluto/lu.pluto.seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/lu/pluto/lu.pluto.seq.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/lu/pluto/lu.pluto_ancc.new_rtile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/lu/pluto/lu.pluto_ancc.new_rtile.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/lu/pluto/lu.pluto_ancc.old_rtile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/lu/pluto/lu.pluto_ancc.old_rtile.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/lu/pluto/lu.polysyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/lu/pluto/lu.polysyn.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/lu/pluto/lu.polysyn.notune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/lu/pluto/lu.polysyn.notune.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/lu/pluto/lu.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/lu/pluto/lu.tar.gz -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/lu/pluto/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/lu/pluto/result.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mm/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mm/mm.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mm/pluto/graphs/matmul-par.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mm/pluto/graphs/matmul-par.dat -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mm/pluto/graphs/matmul-par.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mm/pluto/graphs/matmul-par.eps -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mm/pluto/graphs/matmul-par.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mm/pluto/graphs/matmul-par.plot -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mm/pluto/graphs/matmul-par.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mm/pluto/graphs/matmul-par.png -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mm/pluto/graphs/matmul.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mm/pluto/graphs/matmul.dat -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mm/pluto/graphs/matmul.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mm/pluto/graphs/matmul.eps -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mm/pluto/graphs/matmul.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mm/pluto/graphs/matmul.plot -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mm/pluto/graphs/matmul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mm/pluto/graphs/matmul.png -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mm/pluto/mm.ancc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mm/pluto/mm.ancc.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mm/pluto/mm.base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mm/pluto/mm.base.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mm/pluto/mm.best-par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mm/pluto/mm.best-par.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mm/pluto/mm.best-seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mm/pluto/mm.best-seq.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mm/pluto/mm.mkl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mm/pluto/mm.mkl.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mm/pluto/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mm/pluto/result.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mm/pluto/run.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mm/pluto/run.base -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mm/pluto/run.best: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mm/pluto/run.best -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mm/pluto/run.mkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mm/pluto/run.mkl -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mvt/mvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mvt/mvt.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mvt/mvt.fused.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mvt/mvt.fused.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mvt/pluto/mvt.ancc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mvt/pluto/mvt.ancc.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mvt/pluto/mvt.base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mvt/pluto/mvt.base.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/mvt/pluto/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/mvt/pluto/result.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/permut1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/permut1.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/permut2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/permut2.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/petsc/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/petsc/Notes.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/petsc/bratu.bg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/petsc/bratu.bg.spec -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/petsc/bratu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/petsc/bratu.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/petsc/bratu.regtiling.bg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/petsc/bratu.regtiling.bg.spec -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/petsc/bratu.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/petsc/bratu.spec -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/petsc/bratu_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/petsc/bratu_driver.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/petsc/inode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/petsc/inode.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/petsc/inode2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/petsc/inode2.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/petsc/inode_orig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/petsc/inode_orig.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/petsc/results/_bratu_bgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/petsc/results/_bratu_bgl.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/petsc/results/bratu.bgl.regtiling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/petsc/results/bratu.bgl.regtiling.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/petsc/results/bratu.bgp.regtiling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/petsc/results/bratu.bgp.regtiling.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/petsc/results/bratu.regtiling.bg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/petsc/results/bratu.regtiling.bg.spec -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/polysyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/polysyn.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/polysyn_profiling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/polysyn_profiling.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/pragma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/pragma.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/ptune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/ptune.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/ptune.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/ptune.spec -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/ptune2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/ptune2.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/ptune2_decl_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/ptune2_decl_code.h -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/ptune2_init_code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/ptune2_init_code.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/ptune2_skeleton_code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/ptune2_skeleton_code.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/regtile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/regtile.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/scalarreplace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/scalarreplace.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/seidel/pluto/clean: -------------------------------------------------------------------------------- 1 | 2 | rm *~ _annot* parsetab.* a.out 3 | 4 | -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/seidel/pluto/cmds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/seidel/pluto/cmds -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/seidel/pluto/graphs/seidel-par.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/seidel/pluto/graphs/seidel-par.dat -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/seidel/pluto/graphs/seidel-par.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/seidel/pluto/graphs/seidel-par.eps -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/seidel/pluto/graphs/seidel-par.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/seidel/pluto/graphs/seidel-par.plot -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/seidel/pluto/graphs/seidel-par.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/seidel/pluto/graphs/seidel-par.png -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/seidel/pluto/graphs/seidel.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/seidel/pluto/graphs/seidel.dat -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/seidel/pluto/graphs/seidel.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/seidel/pluto/graphs/seidel.eps -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/seidel/pluto/graphs/seidel.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/seidel/pluto/graphs/seidel.plot -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/seidel/pluto/graphs/seidel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/seidel/pluto/graphs/seidel.png -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/seidel/pluto/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/seidel/pluto/results.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/seidel/pluto/seidel.base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/seidel/pluto/seidel.base.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/seidel/pluto/seidel.pluto.par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/seidel/pluto/seidel.pluto.par.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/seidel/pluto/seidel.pluto.par2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/seidel/pluto/seidel.pluto.par2d.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/seidel/pluto/seidel.pluto.seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/seidel/pluto/seidel.pluto.seq.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/seidel/pluto/seidel.pluto_ancc.par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/seidel/pluto/seidel.pluto_ancc.par.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/seidel/pluto/seidel.polysyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/seidel/pluto/seidel.polysyn.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/seidel/pluto/seidel.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/seidel/pluto/seidel.tar.gz -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/seidel/pluto/seidel_profiling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/seidel/pluto/seidel_profiling.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/seidel/seidel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/seidel/seidel.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/simplyrewrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/simplyrewrite.py -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/spr/pluto/clean: -------------------------------------------------------------------------------- 1 | 2 | rm *~ _annot* parsetab.* *.kernel.* gmon* -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/spr/pluto/spr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/spr/pluto/spr.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/spr/spr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/spr/spr.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/symv/pluto/clean: -------------------------------------------------------------------------------- 1 | 2 | rm *~ _annot* parsetab.* *.kernel.* gmon* -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/symv/pluto/symv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/symv/pluto/symv.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/symv/symv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/symv/symv.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/tensor-contraction/4d2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/tensor-contraction/4d2d.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/tensor-contraction/pluto/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/tensor-contraction/pluto/result.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/tensor-contraction/pluto/run.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/tensor-contraction/pluto/run.base -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/tensor-contraction/pluto/tensor.4d2d.ancc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/tensor-contraction/pluto/tensor.4d2d.ancc.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/tensor-contraction/pluto/tensor.4d2d.base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/tensor-contraction/pluto/tensor.4d2d.base.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/tile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/tile.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmm/pluto/clean: -------------------------------------------------------------------------------- 1 | 2 | rm *~ _annot* parsetab.* a.out 3 | 4 | -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmm/pluto/cmds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/trmm/pluto/cmds -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmm/pluto/graphs/trmm-par.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/trmm/pluto/graphs/trmm-par.dat -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmm/pluto/graphs/trmm-par.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/trmm/pluto/graphs/trmm-par.eps -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmm/pluto/graphs/trmm-par.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/trmm/pluto/graphs/trmm-par.plot -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmm/pluto/graphs/trmm-par.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/trmm/pluto/graphs/trmm-par.png -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmm/pluto/graphs/trmm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/trmm/pluto/graphs/trmm.dat -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmm/pluto/graphs/trmm.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/trmm/pluto/graphs/trmm.eps -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmm/pluto/graphs/trmm.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/trmm/pluto/graphs/trmm.plot -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmm/pluto/graphs/trmm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/trmm/pluto/graphs/trmm.png -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmm/pluto/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/trmm/pluto/results.txt -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmm/pluto/trmm.base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/trmm/pluto/trmm.base.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmm/pluto/trmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/trmm/pluto/trmm.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmm/pluto/trmm.mkl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/trmm/pluto/trmm.mkl.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmm/pluto/trmm.pluto.par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/trmm/pluto/trmm.pluto.par.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmm/pluto/trmm.pluto.seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/trmm/pluto/trmm.pluto.seq.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmm/pluto/trmm.pluto_ancc.seq_par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/trmm/pluto/trmm.pluto_ancc.seq_par.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmm/pluto/trmm.polysyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/trmm/pluto/trmm.polysyn.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmm/pluto/trmm_profiling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/trmm/pluto/trmm_profiling.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmm/trmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/trmm/trmm.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmv/pluto/trmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/trmv/pluto/trmv.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/trmv/trmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/trmv/trmv.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/unroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/unroll.c -------------------------------------------------------------------------------- /orio-0.1.0/testsuite/unrolljam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/orio-0.1.0/testsuite/unrolljam.c -------------------------------------------------------------------------------- /plutune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/plutune -------------------------------------------------------------------------------- /poly_hyperplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/poly_hyperplane.png -------------------------------------------------------------------------------- /polycc.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/polycc.sh.in -------------------------------------------------------------------------------- /recloog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/recloog -------------------------------------------------------------------------------- /test-alt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test-alt.sh -------------------------------------------------------------------------------- /test-lbtile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test-lbtile.sh -------------------------------------------------------------------------------- /test.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test.sh.in -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/1dloop-invar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/1dloop-invar.c -------------------------------------------------------------------------------- /test/2d-bidirec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/2d-bidirec.c -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/adi.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/adi.f -------------------------------------------------------------------------------- /test/adi.scop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/adi.scop -------------------------------------------------------------------------------- /test/adifull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/adifull.c -------------------------------------------------------------------------------- /test/advect3d1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/advect3d1.f -------------------------------------------------------------------------------- /test/banerjee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/banerjee.c -------------------------------------------------------------------------------- /test/ccsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/ccsd.c -------------------------------------------------------------------------------- /test/cholesky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/cholesky.c -------------------------------------------------------------------------------- /test/clauss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/clauss.c -------------------------------------------------------------------------------- /test/constdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/constdep.c -------------------------------------------------------------------------------- /test/costfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/costfunc.c -------------------------------------------------------------------------------- /test/deep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/deep.c -------------------------------------------------------------------------------- /test/dep-1,1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/dep-1,1.c -------------------------------------------------------------------------------- /test/dfp/fdtd-2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/dfp/fdtd-2d.c -------------------------------------------------------------------------------- /test/dfp/scalar-distribute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/dfp/scalar-distribute.c -------------------------------------------------------------------------------- /test/dfp/typed-fuse-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/dfp/typed-fuse-1.c -------------------------------------------------------------------------------- /test/dfp/typed-fuse-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/dfp/typed-fuse-2.c -------------------------------------------------------------------------------- /test/dfp/typed-fuse-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/dfp/typed-fuse-3.c -------------------------------------------------------------------------------- /test/diamond-tile-example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/diamond-tile-example.c -------------------------------------------------------------------------------- /test/doitgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/doitgen.c -------------------------------------------------------------------------------- /test/durbin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/durbin.c -------------------------------------------------------------------------------- /test/durbin_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/durbin_param.c -------------------------------------------------------------------------------- /test/dynprog_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/dynprog_param.c -------------------------------------------------------------------------------- /test/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/example.c -------------------------------------------------------------------------------- /test/farkas.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/farkas.in -------------------------------------------------------------------------------- /test/farkas2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/farkas2.in -------------------------------------------------------------------------------- /test/fdtd-1d.scop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/fdtd-1d.scop -------------------------------------------------------------------------------- /test/fdtd-2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/fdtd-2d.c -------------------------------------------------------------------------------- /test/fdtd-2d.scop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/fdtd-2d.scop -------------------------------------------------------------------------------- /test/fm1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/fm1.in -------------------------------------------------------------------------------- /test/fm2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/fm2.in -------------------------------------------------------------------------------- /test/fm3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/fm3.in -------------------------------------------------------------------------------- /test/fmri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/fmri.c -------------------------------------------------------------------------------- /test/func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/func.c -------------------------------------------------------------------------------- /test/fusion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/fusion.c -------------------------------------------------------------------------------- /test/fusion1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/fusion1.c -------------------------------------------------------------------------------- /test/fusion10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/fusion10.c -------------------------------------------------------------------------------- /test/fusion11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/fusion11.c -------------------------------------------------------------------------------- /test/fusion2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/fusion2.c -------------------------------------------------------------------------------- /test/fusion3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/fusion3.c -------------------------------------------------------------------------------- /test/fusion4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/fusion4.c -------------------------------------------------------------------------------- /test/fusion5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/fusion5.c -------------------------------------------------------------------------------- /test/fusion6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/fusion6.c -------------------------------------------------------------------------------- /test/fusion7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/fusion7.c -------------------------------------------------------------------------------- /test/fusion8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/fusion8.c -------------------------------------------------------------------------------- /test/fusion9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/fusion9.c -------------------------------------------------------------------------------- /test/fw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/fw.c -------------------------------------------------------------------------------- /test/gauss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/gauss.c -------------------------------------------------------------------------------- /test/gemver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/gemver.c -------------------------------------------------------------------------------- /test/gemver.scop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/gemver.scop -------------------------------------------------------------------------------- /test/gemver1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/gemver1.c -------------------------------------------------------------------------------- /test/griebl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/griebl.c -------------------------------------------------------------------------------- /test/haar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/haar.c -------------------------------------------------------------------------------- /test/haar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/haar.cpp -------------------------------------------------------------------------------- /test/haar1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/haar1.c -------------------------------------------------------------------------------- /test/hard.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/hard.f -------------------------------------------------------------------------------- /test/heat-2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/heat-2d.c -------------------------------------------------------------------------------- /test/heat-2dp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/heat-2dp.c -------------------------------------------------------------------------------- /test/heat-3d-imperfect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/heat-3d-imperfect.c -------------------------------------------------------------------------------- /test/heat-3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/heat-3d.c -------------------------------------------------------------------------------- /test/ind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/ind.c -------------------------------------------------------------------------------- /test/intratileopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/intratileopt1.c -------------------------------------------------------------------------------- /test/intratileopt2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/intratileopt2.c -------------------------------------------------------------------------------- /test/intratileopt3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/intratileopt3.c -------------------------------------------------------------------------------- /test/intratileopt4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/intratileopt4.c -------------------------------------------------------------------------------- /test/intratileopt5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/intratileopt5.c -------------------------------------------------------------------------------- /test/jacobi-1d-imper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/jacobi-1d-imper.c -------------------------------------------------------------------------------- /test/jacobi-1d-mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/jacobi-1d-mod.c -------------------------------------------------------------------------------- /test/jacobi-1d-periodic-even.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/jacobi-1d-periodic-even.c -------------------------------------------------------------------------------- /test/jacobi-1d-periodic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/jacobi-1d-periodic.c -------------------------------------------------------------------------------- /test/jacobi-2d-17pt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/jacobi-2d-17pt.c -------------------------------------------------------------------------------- /test/jacobi-2d-imper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/jacobi-2d-imper.c -------------------------------------------------------------------------------- /test/jacobi-2d-imper.par2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/jacobi-2d-imper.par2d.c -------------------------------------------------------------------------------- /test/jacobi-2d-periodic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/jacobi-2d-periodic.c -------------------------------------------------------------------------------- /test/jacobi-2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/jacobi-2d.c -------------------------------------------------------------------------------- /test/jacobi-3d-25pt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/jacobi-3d-25pt.c -------------------------------------------------------------------------------- /test/jacobi-3d-periodic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/jacobi-3d-periodic.c -------------------------------------------------------------------------------- /test/kmeans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/kmeans.c -------------------------------------------------------------------------------- /test/largebounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/largebounds.c -------------------------------------------------------------------------------- /test/limlam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/limlam.c -------------------------------------------------------------------------------- /test/lu-nopivot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/lu-nopivot.c -------------------------------------------------------------------------------- /test/lu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/lu.c -------------------------------------------------------------------------------- /test/luq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/luq.c -------------------------------------------------------------------------------- /test/matmul-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/matmul-init.c -------------------------------------------------------------------------------- /test/matmul-seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/matmul-seq.c -------------------------------------------------------------------------------- /test/matmul-seq2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/matmul-seq2.c -------------------------------------------------------------------------------- /test/matmul-seq3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/matmul-seq3.c -------------------------------------------------------------------------------- /test/matmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/matmul.c -------------------------------------------------------------------------------- /test/matmul.par2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/matmul.par2d.c -------------------------------------------------------------------------------- /test/matmult-imper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/matmult-imper.c -------------------------------------------------------------------------------- /test/memmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/memmin.c -------------------------------------------------------------------------------- /test/mot_detect_kern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/mot_detect_kern.c -------------------------------------------------------------------------------- /test/mot_est.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/mot_est.c -------------------------------------------------------------------------------- /test/mpeg4-strip-down.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/mpeg4-strip-down.c -------------------------------------------------------------------------------- /test/mpeg4.bak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/mpeg4.bak.c -------------------------------------------------------------------------------- /test/mpeg4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/mpeg4.c -------------------------------------------------------------------------------- /test/multi-loop-param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/multi-loop-param.c -------------------------------------------------------------------------------- /test/multi-stmt-2d-periodic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/multi-stmt-2d-periodic.c -------------------------------------------------------------------------------- /test/multi-stmt-lazy-lin-ind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/multi-stmt-lazy-lin-ind.c -------------------------------------------------------------------------------- /test/multi-stmt-periodic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/multi-stmt-periodic.c -------------------------------------------------------------------------------- /test/multi-stmt-stencil-seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/multi-stmt-stencil-seq.c -------------------------------------------------------------------------------- /test/multidim-seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/multidim-seq.c -------------------------------------------------------------------------------- /test/multidim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/multidim.c -------------------------------------------------------------------------------- /test/mvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/mvt.c -------------------------------------------------------------------------------- /test/mxv-seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/mxv-seq.c -------------------------------------------------------------------------------- /test/mxv-seq3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/mxv-seq3.c -------------------------------------------------------------------------------- /test/mxv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/mxv.c -------------------------------------------------------------------------------- /test/nas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/nas.c -------------------------------------------------------------------------------- /test/negparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/negparam.c -------------------------------------------------------------------------------- /test/nodep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/nodep.c -------------------------------------------------------------------------------- /test/noloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/noloop.c -------------------------------------------------------------------------------- /test/nonconst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/nonconst.c -------------------------------------------------------------------------------- /test/nonconst.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/nonconst.in -------------------------------------------------------------------------------- /test/param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/param.c -------------------------------------------------------------------------------- /test/pascal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/pascal.c -------------------------------------------------------------------------------- /test/poisson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/poisson.c -------------------------------------------------------------------------------- /test/polynomial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/polynomial.c -------------------------------------------------------------------------------- /test/polyprod-func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/polyprod-func.c -------------------------------------------------------------------------------- /test/polyprod-imper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/polyprod-imper.c -------------------------------------------------------------------------------- /test/polyprod-systol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/polyprod-systol.c -------------------------------------------------------------------------------- /test/priv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/priv2.c -------------------------------------------------------------------------------- /test/qr.inner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/qr.inner.c -------------------------------------------------------------------------------- /test/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/read.c -------------------------------------------------------------------------------- /test/reg_detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/reg_detect.c -------------------------------------------------------------------------------- /test/reverse-iss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/reverse-iss.c -------------------------------------------------------------------------------- /test/seidel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/seidel.c -------------------------------------------------------------------------------- /test/seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/seq.c -------------------------------------------------------------------------------- /test/shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/shift.c -------------------------------------------------------------------------------- /test/spatial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/spatial.c -------------------------------------------------------------------------------- /test/spu_k_classify_local_naive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/spu_k_classify_local_naive.c -------------------------------------------------------------------------------- /test/svd_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/svd_update.c -------------------------------------------------------------------------------- /test/tce-2index-transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/tce-2index-transform.c -------------------------------------------------------------------------------- /test/tce-3index-transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/tce-3index-transform.c -------------------------------------------------------------------------------- /test/tce-4index-transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/tce-4index-transform.c -------------------------------------------------------------------------------- /test/test-per-cc-obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/test-per-cc-obj.c -------------------------------------------------------------------------------- /test/test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/test1.c -------------------------------------------------------------------------------- /test/test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/test2.c -------------------------------------------------------------------------------- /test/test4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/test4.c -------------------------------------------------------------------------------- /test/test5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/test5.c -------------------------------------------------------------------------------- /test/test6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/test6.c -------------------------------------------------------------------------------- /test/test7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/test7.c -------------------------------------------------------------------------------- /test/test8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/test8.c -------------------------------------------------------------------------------- /test/test_libpluto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/test_libpluto.c -------------------------------------------------------------------------------- /test/testclos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/testclos.c -------------------------------------------------------------------------------- /test/tile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/tile.c -------------------------------------------------------------------------------- /test/triangular.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/triangular.c -------------------------------------------------------------------------------- /test/tricky1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/tricky1.c -------------------------------------------------------------------------------- /test/tricky2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/tricky2.c -------------------------------------------------------------------------------- /test/tricky3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/tricky3.c -------------------------------------------------------------------------------- /test/tricky4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/tricky4.c -------------------------------------------------------------------------------- /test/trisolv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/trisolv.c -------------------------------------------------------------------------------- /test/tss1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/tss1.c -------------------------------------------------------------------------------- /test/unit_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/unit_tests.c -------------------------------------------------------------------------------- /test/unit_tests.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/unit_tests.in -------------------------------------------------------------------------------- /test/unroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/unroll.c -------------------------------------------------------------------------------- /test/unrolljam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/unrolljam.c -------------------------------------------------------------------------------- /test/wavefront.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/test/wavefront.c -------------------------------------------------------------------------------- /tool/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/tool/.gitignore -------------------------------------------------------------------------------- /tool/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/tool/Makefile.am -------------------------------------------------------------------------------- /tool/ast_transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/tool/ast_transform.c -------------------------------------------------------------------------------- /tool/ast_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/tool/ast_transform.h -------------------------------------------------------------------------------- /tool/constraints_polylib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/tool/constraints_polylib.c -------------------------------------------------------------------------------- /tool/constraints_polylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/tool/constraints_polylib.h -------------------------------------------------------------------------------- /tool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/tool/main.cpp -------------------------------------------------------------------------------- /tool/osl_pluto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/tool/osl_pluto.c -------------------------------------------------------------------------------- /tool/osl_pluto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/tool/osl_pluto.h -------------------------------------------------------------------------------- /tool/pet_to_pluto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/tool/pet_to_pluto.cpp -------------------------------------------------------------------------------- /tool/pluto_codegen_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/tool/pluto_codegen_if.c -------------------------------------------------------------------------------- /tool/pluto_codegen_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/tool/pluto_codegen_if.h -------------------------------------------------------------------------------- /tuner/pltuner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/tuner/pltuner -------------------------------------------------------------------------------- /tuner/pltuner-4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/tuner/pltuner-4d -------------------------------------------------------------------------------- /tuner/pltuner-cubic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bondhugula/pluto/HEAD/tuner/pltuner-cubic --------------------------------------------------------------------------------