Update dependency edu.berkeley.cs:chisel3-plugin to v3.6.1 #96
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
3.6.0
->3.6.1
Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
chipsalliance/chisel (edu.berkeley.cs:chisel3-plugin)
v3.6.1
: Chisel v3.6.1Compare Source
Features
CHISEL_USE_COLOR
. Set totrue
to force Chisel to use color andfalse
to disable it.TERM
to be set to something other thandumb
.This
SyncReadMem
wrapper is instantiated using a new object,SRAM.apply
, and invokes.write
,.read
, and.readWrite
to generate a desired number of read, write, and read/write ports. This function returns a newBundle
wire containing the control signals for each requested port.SRAM.apply
andSRAM.masked
now take acontents
parameter, by default aNone
, which is a string path to a binary file on the filesystem which the SRAM should be initialized with.Add new
SRAM
APIs that take threeClock
sequences as parameters instead of the number of read/write/read-write ports. This will sequentially instantiate a memory port for each clock in theClock
sequence and drive them accordingly.Adds
suggestName
API for hierarchy instances.This gives a flexible way to generate a stable name for a Chisel type, which is useful for problems like generating stable names for
Modules
andQueues
API Deprecation
Also fix a crash that could occur when viewing a non-Data containing non-hardware Data.
Backend Code Generation
This results in a slight improvement to emitted FIRRTL quality
Performance
Fixes
SyncReadMem.readWrite
when explicit clocks are used (backport #3313) (by @mergify[bot] inhttps://github.com/chipsalliance/chisel/pull/33155)Chisel will to report multiple errors, but this can be cut short by any thrown Exception which would then take precedence over the previously encountered errors. Now Chisel will prioritize reporting errors even if an Exception is thrown.
Fixes a bug in D/I where unsanitary names would lead to a crash. It also makes the Printable output for Bundles and Records use the sanitary names which makes them better match the FIRRTL.
This fixes Scala compiler warnings in Scala 2.13.12 requiring type ascriptions on public implicit definitions.
Reg()
to properly handle clocks as rvalues (backport #3775) (by @mergify[bot] inhttps://github.com/chipsalliance/chisel/pull/37788)DataView
(includingFlatIO
)Reg()
Previously, the function would infinitely recurse resulting in a stack overflow.
Previously, the user-specified (or unspecified minimum width) of the literal would be used in some operations like concatenation. For literal values that are too-wide, they will now truncate to the correct width. This will become a warning (then later an error) in newer major versions of Chisel.
Documentation
Just a oneline fix to the comment of Arbiter chosen port
Update CONTRIBUTING instructions to clarify backport process and branch to target.
Existing links to
https://github.com/chipsalliance/chisel/releases/latest/download/chisel-template.scala
should instead usehttps://github.com/chipsalliance/chisel/releases/latest/download/chisel-example.scala
Dependency Updates
Build and Internal Changes
Improve backport automation so that release notes generation from backport PRs works properly.
import chisel3._
import chisel3.util._
mikepenz/release-changelog-builder-action
to v4.1.1Full Changelog: chipsalliance/chisel@v3.6.0...v3.6.1
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.