Skip to content

Commit

Permalink
Release 0.7.0 (#1939)
Browse files Browse the repository at this point in the history
* Update changelog

* update to 0.7.1
  • Loading branch information
rachitnigam authored Feb 29, 2024
1 parent 80e8908 commit 0f5b029
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 6 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
## Current

## 0.7.0

### Language
- Added `static` abstractions for expression latency-sensitive computations.
- Deprecated `@static` attribute (#1896)
- `@interval` attribute is used to express how quickly a component can re-execute.

### Primitives
- Reorganized `std_mem` and `seq_mem`
- `std_mem` is now called `comb_mem` and generally not preferred for use in real designs because of combinational reads
- Added new `stallable` and `pipelined` primitives. Currently, only multipliers are supported.

### Passes
- `compaction`: Pass to automatically compact control-programs based on read-write dependencies.
- `default-assigns`: New pass to add assignments for ports that have no source-level assignments.

### Tools
- `calyx-lsp`: Language server protocol implementation based on Treesitter.
- `calyx pass-help`: New command line option to provide help on passes and pass options.

### Internal
- `ReadWriteSet`: Changed to provide methods on assignments and enable chaining (#1921).


## 0.6.1
- Fix checking for large constants (#1743)
- Better static inlining for single cycle `if` (#1734)
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ description = "Compiler Infrastructure for Hardware Accelerator Generation"
categories = ["compilers"]
homepage = "https://calyxir.org"
edition = "2021"
version = "0.6.1"
version = "0.7.1"
rust-version = "1.67"

[workspace.dependencies]
Expand All @@ -47,11 +47,11 @@ pest_derive = "2"
pest_consume = "1"
argh = "0.1"
anyhow = "1"
calyx-utils = { path = "calyx-utils", version = "0.6.1" }
calyx-ir = { path = "calyx-ir", version = "0.6.1" }
calyx-frontend = { path = "calyx-frontend", version = "0.6.1" }
calyx-opt = { path = "calyx-opt", version = "0.6.1" }
calyx-backend = { path = "calyx-backend", version = "0.6.1" }
calyx-utils = { path = "calyx-utils", version = "0.7.1" }
calyx-ir = { path = "calyx-ir", version = "0.7.1" }
calyx-frontend = { path = "calyx-frontend", version = "0.7.1" }
calyx-opt = { path = "calyx-opt", version = "0.7.1" }
calyx-backend = { path = "calyx-backend", version = "0.7.1" }

[workspace.dependencies.petgraph]
version = "0.6"
Expand Down

0 comments on commit 0f5b029

Please sign in to comment.