-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump breeze and spire versions * Bump spire to 0.18.0 * Bump breeze to 2.1.0 * Override method 'reverse' in SignAlgebra due to both Order[A] and CMonoid[A] now having 'reverse' methods each. * Remove parameterless non-Unit method definitions and invocations * Bump Chisel version to 3.6 * Bump dsptools version to 1.6 * Bump chiseltest version to 0.6 * Bump scalatest version to 3.2.15 * Bump fixedpoint to version supporting Chisel 3.6.0 * Apply fixedpoint.shadow.Mux to more places * Add '-Xfatal-warnings' compiler option * Remove Saturate as it uses firrtl transformations * Add branch 1.6.x to CI workflow * Update scalafmt settings * Add sclaafmt sbt plugin * Reformat source files according to scalafmt rules * Add scalafmt step to CI * Changed license from BSD to Apache-2.0 in README.md --------- Co-authored-by: Aleksandar Kondić <[email protected]>
- Loading branch information
1 parent
3fb6e60
commit 2fa039f
Showing
43 changed files
with
680 additions
and
869 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,15 +5,15 @@ enablePlugins(SiteScaladocPlugin) | |
enablePlugins(GhpagesPlugin) | ||
|
||
val defaultVersions = Map( | ||
"chisel3" -> "3.5-SNAPSHOT", | ||
"chiseltest" -> "0.5-SNAPSHOT" | ||
"chisel3" -> "3.6-SNAPSHOT", | ||
"chiseltest" -> "0.6-SNAPSHOT" | ||
) | ||
|
||
name := "dsptools" | ||
|
||
val commonSettings = Seq( | ||
organization := "edu.berkeley.cs", | ||
version := "1.5-SNAPSHOT", | ||
version := "1.6-SNAPSHOT", | ||
git.remoteRepo := "[email protected]:ucb-bar/dsptools.git", | ||
autoAPIMappings := true, | ||
scalaVersion := "2.13.10", | ||
|
@@ -23,6 +23,7 @@ val commonSettings = Seq( | |
"-deprecation", | ||
"-feature", | ||
"-language:reflectiveCalls", | ||
"-Xfatal-warnings", | ||
"-Ymacro-annotations"), | ||
javacOptions ++= Seq("-source", "1.8", "-target", "1.8"), | ||
pomExtra := (<url>http://chisel.eecs.berkeley.edu/</url> | ||
|
@@ -78,15 +79,15 @@ val commonSettings = Seq( | |
val dsptoolsSettings = Seq( | ||
name := "dsptools", | ||
libraryDependencies ++= Seq( | ||
"org.typelevel" %% "spire" % "0.17.0", | ||
"org.scalanlp" %% "breeze" % "1.1", | ||
"org.scalatest" %% "scalatest" % "3.2.+" % "test" | ||
"org.typelevel" %% "spire" % "0.18.0", | ||
"org.scalanlp" %% "breeze" % "2.1.0", | ||
"org.scalatest" %% "scalatest" % "3.2.15" % "test" | ||
), | ||
) | ||
|
||
val fixedpointSettings = Seq( | ||
libraryDependencies ++= Seq( | ||
"org.scalatest" %% "scalatest" % "3.2.+" % "test", | ||
"org.scalatest" %% "scalatest" % "3.2.15" % "test", | ||
"org.scalatestplus" %% "scalacheck-1-14" % "3.2.2.0" % "test", | ||
) | ||
) | ||
|
Submodule fixedpoint
updated
12 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.