Awesome
<h1> <p align="center"> <img src="https://calyxir.org/img/logo-text-magic.svg" width="300"> </p> <p align="center"> <a href="https://calyxir.org">A Compiler Infrastructure for Accelerator Generators</a> </p> </h1>Calyx is an intermediate language and infrastructure for building compilers that generate custom hardware accelerators.
See the Calyx website, language documentation and the documentation for the source code for more information. Calyx's design is based on our ASPLOS '21 paper.
Installation
Quick
If you want to try out the compiler, install the crate using cargo
:
cargo install calyx
This will install the calyx
binary, which can optimize and compile Calyx programs to Verilog or CIRCT.
Recommended
Follow the getting started instructions.
Organization
This repository contains the source code for the following:
calyx-utils
: Utilities for the Calyx compilercalyx-frontend
: Parser and frontend AST for the Calyx language.calyx-ir
: The Calyx intermediate language.calyx-opt
: Optimizations for the Calyx intermediate language.calyx
: The Calyx compiler driver.
You can also use the Calyx compiler as a library and implement your own optimizations. To do this, check out the example provided by the calyx-opt
crate.