Skip to content

Commit

Permalink
Merge branch 'main' into vscode_publish
Browse files Browse the repository at this point in the history
  • Loading branch information
sgpthomas committed Feb 29, 2024
2 parents ab1b17c + e4ee830 commit d9d7795
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 15 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
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 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 Expand Up @@ -91,7 +91,7 @@ default = []
serialize = ["calyx-ir/serialize", "serde/rc", "calyx-backend/sexp"]

[build-dependencies]
calyx-stdlib = { path = "calyx-stdlib", version = "0.6.1" }
calyx-stdlib = { path = "calyx-stdlib", version = "0.7.1" }

[dependencies]
atty.workspace = true
Expand Down

0 comments on commit d9d7795

Please sign in to comment.