├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── bin └── spatial └── src └── main └── scala ├── GEMM.scala └── HelloSpatial.scala /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-ppl/spatial-quickstart/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-ppl/spatial-quickstart/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-ppl/spatial-quickstart/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-ppl/spatial-quickstart/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-ppl/spatial-quickstart/HEAD/README.md -------------------------------------------------------------------------------- /bin/spatial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-ppl/spatial-quickstart/HEAD/bin/spatial -------------------------------------------------------------------------------- /src/main/scala/GEMM.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-ppl/spatial-quickstart/HEAD/src/main/scala/GEMM.scala -------------------------------------------------------------------------------- /src/main/scala/HelloSpatial.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanford-ppl/spatial-quickstart/HEAD/src/main/scala/HelloSpatial.scala --------------------------------------------------------------------------------