├── .github └── workflows │ ├── deploy.yml │ └── test.yml ├── .gitignore ├── .travis.yml ├── README.md ├── SUMMARY.md ├── book.json ├── bsbuilder ├── bitstream-spec.md └── bsbuilder.md ├── cgra ├── cgra-generator.md └── pe-spec.md ├── coreir └── intro.md ├── halide ├── application-list.md ├── codegen.md ├── compilation.md ├── halide-basics.md ├── halide-to-hardware.md ├── hardware-lowering.md ├── installation.md ├── intro-backup.md ├── intro.md ├── old_repo.md ├── operations.md ├── testing.md ├── usage.md ├── writing-apps.md └── writing-schedules.md ├── how-to.md ├── overview └── toolchain.md ├── package.json ├── pnr ├── analysis.md ├── bitstream-gen.md ├── detailed-placement.md ├── detailed-routing.md ├── global-placement.md ├── global-routing.md ├── img │ ├── detailed.svg │ ├── global.svg │ └── pnr.svg ├── intro.md ├── packing.md ├── placement.md ├── retiming.md ├── routing.md └── testing.md ├── simulator └── simulator.md └── tbg ├── harness_generation.md ├── img └── harness-loop.svg ├── intro.md ├── io-json.md ├── pre_post_processing.md └── roadmap.md /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/book.json -------------------------------------------------------------------------------- /bsbuilder/bitstream-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/bsbuilder/bitstream-spec.md -------------------------------------------------------------------------------- /bsbuilder/bsbuilder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/bsbuilder/bsbuilder.md -------------------------------------------------------------------------------- /cgra/cgra-generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/cgra/cgra-generator.md -------------------------------------------------------------------------------- /cgra/pe-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/cgra/pe-spec.md -------------------------------------------------------------------------------- /coreir/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/coreir/intro.md -------------------------------------------------------------------------------- /halide/application-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/halide/application-list.md -------------------------------------------------------------------------------- /halide/codegen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/halide/codegen.md -------------------------------------------------------------------------------- /halide/compilation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/halide/compilation.md -------------------------------------------------------------------------------- /halide/halide-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/halide/halide-basics.md -------------------------------------------------------------------------------- /halide/halide-to-hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/halide/halide-to-hardware.md -------------------------------------------------------------------------------- /halide/hardware-lowering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/halide/hardware-lowering.md -------------------------------------------------------------------------------- /halide/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/halide/installation.md -------------------------------------------------------------------------------- /halide/intro-backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/halide/intro-backup.md -------------------------------------------------------------------------------- /halide/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/halide/intro.md -------------------------------------------------------------------------------- /halide/old_repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/halide/old_repo.md -------------------------------------------------------------------------------- /halide/operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/halide/operations.md -------------------------------------------------------------------------------- /halide/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/halide/testing.md -------------------------------------------------------------------------------- /halide/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/halide/usage.md -------------------------------------------------------------------------------- /halide/writing-apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/halide/writing-apps.md -------------------------------------------------------------------------------- /halide/writing-schedules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/halide/writing-schedules.md -------------------------------------------------------------------------------- /how-to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/how-to.md -------------------------------------------------------------------------------- /overview/toolchain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/overview/toolchain.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/package.json -------------------------------------------------------------------------------- /pnr/analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/pnr/analysis.md -------------------------------------------------------------------------------- /pnr/bitstream-gen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/pnr/bitstream-gen.md -------------------------------------------------------------------------------- /pnr/detailed-placement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/pnr/detailed-placement.md -------------------------------------------------------------------------------- /pnr/detailed-routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/pnr/detailed-routing.md -------------------------------------------------------------------------------- /pnr/global-placement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/pnr/global-placement.md -------------------------------------------------------------------------------- /pnr/global-routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/pnr/global-routing.md -------------------------------------------------------------------------------- /pnr/img/detailed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/pnr/img/detailed.svg -------------------------------------------------------------------------------- /pnr/img/global.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/pnr/img/global.svg -------------------------------------------------------------------------------- /pnr/img/pnr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/pnr/img/pnr.svg -------------------------------------------------------------------------------- /pnr/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/pnr/intro.md -------------------------------------------------------------------------------- /pnr/packing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/pnr/packing.md -------------------------------------------------------------------------------- /pnr/placement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/pnr/placement.md -------------------------------------------------------------------------------- /pnr/retiming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/pnr/retiming.md -------------------------------------------------------------------------------- /pnr/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/pnr/routing.md -------------------------------------------------------------------------------- /pnr/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/pnr/testing.md -------------------------------------------------------------------------------- /simulator/simulator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/simulator/simulator.md -------------------------------------------------------------------------------- /tbg/harness_generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/tbg/harness_generation.md -------------------------------------------------------------------------------- /tbg/img/harness-loop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/tbg/img/harness-loop.svg -------------------------------------------------------------------------------- /tbg/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/tbg/intro.md -------------------------------------------------------------------------------- /tbg/io-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/tbg/io-json.md -------------------------------------------------------------------------------- /tbg/pre_post_processing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/tbg/pre_post_processing.md -------------------------------------------------------------------------------- /tbg/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordAHA/CGRAFlowDoc/HEAD/tbg/roadmap.md --------------------------------------------------------------------------------