From 5694d951201b3092dbca90f9eebb552c83a1f4f5 Mon Sep 17 00:00:00 2001 From: Jim Lawson Date: Mon, 1 Jul 2019 16:38:37 -0700 Subject: [PATCH 01/20] Update deprecations (#150) * Update deprecations * Ensure TesterOptionsManager isn't shared between tests. * Respond to comments - remove () from asBool. * Respond to comment - ensure testOptionsManager has parsed args. * Provide a utility copy method to copy TesterOptionsManager state --- src/main/scala/examples/Adder.scala | 2 +- .../scala/examples/EnableShiftRegister.scala | 2 +- .../scala/solutions/SingleEvenFilter.scala | 2 +- src/test/scala/utils/TutorialRunner.scala | 20 ++++++++++++++++--- 4 files changed, 20 insertions(+), 6 deletions(-) diff --git a/src/main/scala/examples/Adder.scala b/src/main/scala/examples/Adder.scala index 3a099aeb..23c68479 100644 --- a/src/main/scala/examples/Adder.scala +++ b/src/main/scala/examples/Adder.scala @@ -29,7 +29,7 @@ class Adder(val n:Int) extends Module { FAs(i).b := io.B(i) FAs(i).cin := carry(i) carry(i+1) := FAs(i).cout - sum(i) := FAs(i).sum.toBool() + sum(i) := FAs(i).sum.asBool } io.Sum := sum.asUInt io.Cout := carry(n) diff --git a/src/main/scala/examples/EnableShiftRegister.scala b/src/main/scala/examples/EnableShiftRegister.scala index 28badc59..bd99e930 100644 --- a/src/main/scala/examples/EnableShiftRegister.scala +++ b/src/main/scala/examples/EnableShiftRegister.scala @@ -13,7 +13,7 @@ class EnableShiftRegister extends Module { val r1 = Reg(UInt()) val r2 = Reg(UInt()) val r3 = Reg(UInt()) - when(reset.toBool) { + when(reset.asBool) { r0 := 0.U(4.W) r1 := 0.U(4.W) r2 := 0.U(4.W) diff --git a/src/main/scala/solutions/SingleEvenFilter.scala b/src/main/scala/solutions/SingleEvenFilter.scala index 73825410..b278a86d 100644 --- a/src/main/scala/solutions/SingleEvenFilter.scala +++ b/src/main/scala/solutions/SingleEvenFilter.scala @@ -32,7 +32,7 @@ object SingleFilter { object EvenFilter { def apply[T <: UInt](dtype: T) = - Module(new PredicateFilter(dtype, (x: T) => x(0).toBool)) + Module(new PredicateFilter(dtype, (x: T) => x(0).asBool)) } class SingleEvenFilter[T <: UInt](dtype: T) extends Filter(dtype) { diff --git a/src/test/scala/utils/TutorialRunner.scala b/src/test/scala/utils/TutorialRunner.scala index 9c17ea48..077ccb6b 100644 --- a/src/test/scala/utils/TutorialRunner.scala +++ b/src/test/scala/utils/TutorialRunner.scala @@ -4,6 +4,18 @@ package utils import scala.collection.mutable.ArrayBuffer import chisel3.iotesters._ +object OptionsCopy { + def apply(t: TesterOptionsManager): TesterOptionsManager = { + new TesterOptionsManager { + testerOptions = t.testerOptions.copy() + interpreterOptions = t.interpreterOptions.copy() + chiselOptions = t.chiselOptions.copy() + firrtlOptions = t.firrtlOptions.copy() + treadleOptions = t.treadleOptions.copy() + } + } +} + object TutorialRunner { def apply(section: String, tutorialMap: Map[String, TesterOptionsManager => Boolean], args: Array[String]): Unit = { var successful = 0 @@ -37,9 +49,11 @@ object TutorialRunner { case Some(test) => println(s"Starting tutorial $testName") try { - optionsManager.setTopName(testName) - optionsManager.setTargetDirName(s"test_run_dir/$section/$testName") - if(test(optionsManager)) { + // Start with a (relatively) clean set of options. + val testOptionsManager = OptionsCopy(optionsManager) + testOptionsManager.setTopName(testName) + testOptionsManager.setTargetDirName(s"test_run_dir/$section/$testName") + if(test(testOptionsManager)) { successful += 1 } else { From d9b72952efc2c34fa1451a70df401255749769fc Mon Sep 17 00:00:00 2001 From: Jim Lawson Date: Mon, 27 Jan 2020 14:04:07 -0800 Subject: [PATCH 02/20] Fix some typos in tutorial.tex (#148) (#155) (cherry picked from commit 2d43a86b0eddaad9123ac0bd6ed7f51f64eb1a63) Co-authored-by: Felix Yan --- doc/tutorial/tutorial.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tutorial/tutorial.tex b/doc/tutorial/tutorial.tex index 58380a31..1357de4c 100644 --- a/doc/tutorial/tutorial.tex +++ b/doc/tutorial/tutorial.tex @@ -803,7 +803,7 @@ \section{State Elements} delayed by one clock cycle. Note that we do not have to specify the type of \verb+Reg+ as it will be automatically inferred from its input when instantiated in this way. In the current version of Chisel, -clock and reset are global signals that are implicity included where +clock and reset are global signals that are implicitly included where needed. Using registers, we can quickly define a number of useful circuit @@ -832,7 +832,7 @@ \section{State Elements} The \verb!:=! assignment to \verb!x! in \verb!counter! wires an update combinational circuit which increments the counter value unless it hits the \verb+max+ at which point it wraps back to zero. Note that when \verb!x! appears on the right-hand side of -an assigment, its output is referenced, whereas when on the left-hand +an assignment, its output is referenced, whereas when on the left-hand side, its input is referenced. Counters can be used to build a number of useful sequential circuits. From 32eb45fb04bfffcf394e0aed452b9c0cacbb0ea0 Mon Sep 17 00:00:00 2001 From: Jim Lawson Date: Wed, 18 Mar 2020 10:15:12 -0700 Subject: [PATCH 03/20] Bump sbt and scala versions (#157) --- build.sbt | 4 ++-- project/build.properties | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 543e5db8..94e3c36f 100644 --- a/build.sbt +++ b/build.sbt @@ -30,9 +30,9 @@ version := "3.2-SNAPSHOT" name := "chisel-tutorial" -scalaVersion := "2.11.12" +scalaVersion := "2.12.10" -crossScalaVersions := Seq("2.11.12", "2.12.4") +crossScalaVersions := Seq("2.11.12", "2.12.10") scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:reflectiveCalls") diff --git a/project/build.properties b/project/build.properties index 210243d0..dcfaffb4 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.1.1 +sbt.version = 1.3.8 From 8617196d8555a6560e302c1b2e1b7d444ee91e5c Mon Sep 17 00:00:00 2001 From: Jim Lawson Date: Tue, 5 May 2020 10:47:14 -0700 Subject: [PATCH 04/20] Bump SNAPSHOT versions for master branch (#156) * Bump release versions * Bump sbt to 1.3.7. (#154) OpenJDK 13 causes problems with old versions of SBT. See [this issue](https://github.com/sbt/sbt/issues/5093). (cherry picked from commit d47fa0d97c8a1d4adb587a2755ed99530aa3590f) Co-authored-by: Paul Rigge --- build.sbt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build.sbt b/build.sbt index 94e3c36f..13b59b4b 100644 --- a/build.sbt +++ b/build.sbt @@ -26,25 +26,25 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = { organization := "edu.berkeley.cs" -version := "3.2-SNAPSHOT" +version := "3.3-SNAPSHOT" name := "chisel-tutorial" scalaVersion := "2.12.10" -crossScalaVersions := Seq("2.11.12", "2.12.10") +crossScalaVersions := Seq("2.12.10", "2.11.12") scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:reflectiveCalls") // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. // The following are the default development versions, not the "release" versions. -val defaultVersions = Map( - "chisel3" -> "3.2-SNAPSHOT", - "chisel-iotesters" -> "1.3-SNAPSHOT" +val defaultVersions = Seq( + "chisel3" -> "3.3-SNAPSHOT", + "chisel-iotesters" -> "1.4-SNAPSHOT" ) -libraryDependencies ++= (Seq("chisel3","chisel-iotesters").map { - dep: String => "edu.berkeley.cs" %% dep % sys.props.getOrElse(dep + "Version", defaultVersions(dep)) }) +libraryDependencies ++= defaultVersions.map { case (dep, ver) => + "edu.berkeley.cs" %% dep % sys.props.getOrElse(dep + "Version", ver) } resolvers ++= Seq( Resolver.sonatypeRepo("snapshots"), From a1942bc3df29a9a547a3c884537cff4b089d5669 Mon Sep 17 00:00:00 2001 From: Jim Lawson Date: Wed, 20 May 2020 11:06:13 -0700 Subject: [PATCH 05/20] Remove explicit chisel3 dependency (#158) * Remove explicit chisel3 dependency Rely on testers to pull in the correct version. * Bump iotesters to correct SNAPSHOT version; simplify libraryDependencies. * Use SNAPSHOT version (for master/SNAPSHOT branches) --- build.sbt | 1 - 1 file changed, 1 deletion(-) diff --git a/build.sbt b/build.sbt index 13b59b4b..7b6be305 100644 --- a/build.sbt +++ b/build.sbt @@ -39,7 +39,6 @@ scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:refle // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. // The following are the default development versions, not the "release" versions. val defaultVersions = Seq( - "chisel3" -> "3.3-SNAPSHOT", "chisel-iotesters" -> "1.4-SNAPSHOT" ) From 37d7f752c568fc8c73e7ddcaf3e427ef0d7039dc Mon Sep 17 00:00:00 2001 From: Jim Lawson Date: Wed, 20 May 2020 11:08:26 -0700 Subject: [PATCH 06/20] fix single port ram code (#160) Co-authored-by: bqwer --- doc/tutorial/tutorial-2.tex | 8 ++++---- doc/tutorial/tutorial.tex | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/tutorial/tutorial-2.tex b/doc/tutorial/tutorial-2.tex index 7e0200e2..08716d24 100644 --- a/doc/tutorial/tutorial-2.tex +++ b/doc/tutorial/tutorial-2.tex @@ -1339,10 +1339,10 @@ \subsection{Mem} \begin{scala} val ram1p = Mem(UInt(width = 32), 1024, seqRead = true) -val reg_raddr = Reg(UInt()) -when (wen) { ram1p(waddr) := wdata } -.elsewhen (ren) { reg_raddr := raddr } -val rdata = ram1p(reg_raddr) +val reg_addr = Reg(UInt()) +when (wen) { ram1p(addr) := wdata } +.elsewhen (ren) { reg_addr := addr } +val rdata = ram1p(reg_addr) \end{scala} If the same \code{Mem} address is both written and sequentially read on the same clock diff --git a/doc/tutorial/tutorial.tex b/doc/tutorial/tutorial.tex index 1357de4c..e7339b78 100644 --- a/doc/tutorial/tutorial.tex +++ b/doc/tutorial/tutorial.tex @@ -1278,10 +1278,10 @@ \subsection{Mem} \begin{scala} val ram1p = Mem(1024, UInt(32.W)) -val reg_raddr = Reg(UInt()) -when (wen) { ram1p(waddr) := wdata } -.elsewhen (ren) { reg_raddr := raddr } -val rdata = ram1p(reg_raddr) +val reg_addr = Reg(UInt()) +when (wen) { ram1p(addr) := wdata } +.elsewhen (ren) { reg_addr := addr } +val rdata = ram1p(reg_addr) \end{scala} If the same \code{Mem} address is both written and sequentially read on the same clock From 1e16bc8207137d9458a8f64357f66aa2b54a277f Mon Sep 17 00:00:00 2001 From: Jim Lawson Date: Wed, 20 May 2020 12:00:17 -0700 Subject: [PATCH 07/20] Bump sbt to 1.3.10 (#161) --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index dcfaffb4..b53dc26f 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.3.8 +sbt.version = 1.3.10 From 476a8e7668ed9b26f90c8e248486334b80aeb64d Mon Sep 17 00:00:00 2001 From: chick Date: Tue, 28 Jul 2020 15:16:34 -0700 Subject: [PATCH 08/20] Bump version strings. --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 7b6be305..9f567116 100644 --- a/build.sbt +++ b/build.sbt @@ -26,7 +26,7 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = { organization := "edu.berkeley.cs" -version := "3.3-SNAPSHOT" +version := "3.3-20200728-SNAPSHOT" name := "chisel-tutorial" @@ -39,7 +39,7 @@ scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:refle // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. // The following are the default development versions, not the "release" versions. val defaultVersions = Seq( - "chisel-iotesters" -> "1.4-SNAPSHOT" + "chisel-iotesters" -> "1.5-20200728-SNAPSHOT" ) libraryDependencies ++= defaultVersions.map { case (dep, ver) => From a5d4a2a03cb580238c478f3c5482289f5bd7a6b3 Mon Sep 17 00:00:00 2001 From: chick Date: Sat, 15 Aug 2020 17:18:04 -0700 Subject: [PATCH 09/20] fix wild card version in template and tutorial --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 9f567116..b02a543e 100644 --- a/build.sbt +++ b/build.sbt @@ -26,7 +26,7 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = { organization := "edu.berkeley.cs" -version := "3.3-20200728-SNAPSHOT" +version := "3.3-SNAPSHOT" name := "chisel-tutorial" @@ -39,7 +39,7 @@ scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:refle // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. // The following are the default development versions, not the "release" versions. val defaultVersions = Seq( - "chisel-iotesters" -> "1.5-20200728-SNAPSHOT" + "chisel-iotesters" -> "1.5-SNAPSHOT" ) libraryDependencies ++= defaultVersions.map { case (dep, ver) => From bb3100108f695a6b74c706eb85429b992addf39d Mon Sep 17 00:00:00 2001 From: chick Date: Sun, 16 Aug 2020 10:18:15 -0700 Subject: [PATCH 10/20] Bump version strings --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index b02a543e..4486ce3e 100644 --- a/build.sbt +++ b/build.sbt @@ -26,7 +26,7 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = { organization := "edu.berkeley.cs" -version := "3.3-SNAPSHOT" +version := "3.3.0-RC1" name := "chisel-tutorial" @@ -39,7 +39,7 @@ scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:refle // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. // The following are the default development versions, not the "release" versions. val defaultVersions = Seq( - "chisel-iotesters" -> "1.5-SNAPSHOT" + "chisel-iotesters" -> "1.5.0-RC1" ) libraryDependencies ++= defaultVersions.map { case (dep, ver) => From 505ec1149835629d904b3f7452d40fbb44c74ddb Mon Sep 17 00:00:00 2001 From: chick Date: Tue, 15 Sep 2020 21:51:30 -0700 Subject: [PATCH 11/20] Bump version strings. --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 4486ce3e..2859bd61 100644 --- a/build.sbt +++ b/build.sbt @@ -26,7 +26,7 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = { organization := "edu.berkeley.cs" -version := "3.3.0-RC1" +version := "3.3.0-RC2" name := "chisel-tutorial" @@ -39,7 +39,7 @@ scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:refle // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. // The following are the default development versions, not the "release" versions. val defaultVersions = Seq( - "chisel-iotesters" -> "1.5.0-RC1" + "chisel-iotesters" -> "1.5.0-RC2" ) libraryDependencies ++= defaultVersions.map { case (dep, ver) => From ef68e94fb087e6e53ce24b2c8c36e856d039c123 Mon Sep 17 00:00:00 2001 From: chick Date: Thu, 17 Sep 2020 09:58:05 -0700 Subject: [PATCH 12/20] Bump version strings. --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 2859bd61..fd3d5f71 100644 --- a/build.sbt +++ b/build.sbt @@ -26,7 +26,7 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = { organization := "edu.berkeley.cs" -version := "3.3.0-RC2" +version := "3.3.0-RC3" name := "chisel-tutorial" @@ -39,7 +39,7 @@ scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:refle // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. // The following are the default development versions, not the "release" versions. val defaultVersions = Seq( - "chisel-iotesters" -> "1.5.0-RC2" + "chisel-iotesters" -> "1.5.0-RC3" ) libraryDependencies ++= defaultVersions.map { case (dep, ver) => From 7057a009c1981f703a913e52dce1631e98898920 Mon Sep 17 00:00:00 2001 From: chick Date: Mon, 5 Oct 2020 17:00:30 -0700 Subject: [PATCH 13/20] Bump version strings. --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index fd3d5f71..6e33e0eb 100644 --- a/build.sbt +++ b/build.sbt @@ -26,7 +26,7 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = { organization := "edu.berkeley.cs" -version := "3.3.0-RC3" +version := "3.3.0" name := "chisel-tutorial" @@ -39,7 +39,7 @@ scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:refle // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. // The following are the default development versions, not the "release" versions. val defaultVersions = Seq( - "chisel-iotesters" -> "1.5.0-RC3" + "chisel-iotesters" -> "1.5.0" ) libraryDependencies ++= defaultVersions.map { case (dep, ver) => From 3e5f876c0ce36a4aac7296d10021cf7bb1928fa1 Mon Sep 17 00:00:00 2001 From: chick Date: Wed, 18 Nov 2020 10:28:19 -0800 Subject: [PATCH 14/20] Bump version strings. --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 6e33e0eb..a6b64638 100644 --- a/build.sbt +++ b/build.sbt @@ -26,7 +26,7 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = { organization := "edu.berkeley.cs" -version := "3.3.0" +version := "3.3.1" name := "chisel-tutorial" @@ -39,7 +39,7 @@ scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:refle // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. // The following are the default development versions, not the "release" versions. val defaultVersions = Seq( - "chisel-iotesters" -> "1.5.0" + "chisel-iotesters" -> "1.5.1" ) libraryDependencies ++= defaultVersions.map { case (dep, ver) => From 7e97b1bbfd0d07a6885924529f48fbec314a2474 Mon Sep 17 00:00:00 2001 From: chick Date: Wed, 2 Dec 2020 10:18:09 -0800 Subject: [PATCH 15/20] Bump version strings. --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index a6b64638..6001d158 100644 --- a/build.sbt +++ b/build.sbt @@ -26,7 +26,7 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = { organization := "edu.berkeley.cs" -version := "3.3.1" +version := "3.3.2" name := "chisel-tutorial" @@ -39,7 +39,7 @@ scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:refle // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. // The following are the default development versions, not the "release" versions. val defaultVersions = Seq( - "chisel-iotesters" -> "1.5.1" + "chisel-iotesters" -> "1.5.2" ) libraryDependencies ++= defaultVersions.map { case (dep, ver) => From 416fa25bc65c0ce7b56d7c7993473a7cd4b14b38 Mon Sep 17 00:00:00 2001 From: chick Date: Wed, 2 Dec 2020 20:59:21 -0800 Subject: [PATCH 16/20] Bump version strings. --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 6001d158..a6b64638 100644 --- a/build.sbt +++ b/build.sbt @@ -26,7 +26,7 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = { organization := "edu.berkeley.cs" -version := "3.3.2" +version := "3.3.1" name := "chisel-tutorial" @@ -39,7 +39,7 @@ scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:refle // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. // The following are the default development versions, not the "release" versions. val defaultVersions = Seq( - "chisel-iotesters" -> "1.5.2" + "chisel-iotesters" -> "1.5.1" ) libraryDependencies ++= defaultVersions.map { case (dep, ver) => From a109e02963850948ab8bda27aa85c19c135ed35b Mon Sep 17 00:00:00 2001 From: chick Date: Mon, 1 Feb 2021 15:25:57 -0800 Subject: [PATCH 17/20] Bump version strings. --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index a6b64638..6001d158 100644 --- a/build.sbt +++ b/build.sbt @@ -26,7 +26,7 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = { organization := "edu.berkeley.cs" -version := "3.3.1" +version := "3.3.2" name := "chisel-tutorial" @@ -39,7 +39,7 @@ scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:refle // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. // The following are the default development versions, not the "release" versions. val defaultVersions = Seq( - "chisel-iotesters" -> "1.5.1" + "chisel-iotesters" -> "1.5.2" ) libraryDependencies ++= defaultVersions.map { case (dep, ver) => From d92c8bd5b1fbaf9451ec65e6019f63a01c8623ac Mon Sep 17 00:00:00 2001 From: Jack Koenig Date: Wed, 31 Mar 2021 14:31:57 -0700 Subject: [PATCH 18/20] Bump version strings. --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 6001d158..7390fcd8 100644 --- a/build.sbt +++ b/build.sbt @@ -26,7 +26,7 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = { organization := "edu.berkeley.cs" -version := "3.3.2" +version := "3.3.3" name := "chisel-tutorial" @@ -39,7 +39,7 @@ scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:refle // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. // The following are the default development versions, not the "release" versions. val defaultVersions = Seq( - "chisel-iotesters" -> "1.5.2" + "chisel-iotesters" -> "1.5.3" ) libraryDependencies ++= defaultVersions.map { case (dep, ver) => From 382b8f03c307fb9d70370ee21c7cb0acadecf188 Mon Sep 17 00:00:00 2001 From: Jack Date: Sat, 18 Sep 2021 04:07:47 +0000 Subject: [PATCH 19/20] Bump version strings. --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 7390fcd8..79590dab 100644 --- a/build.sbt +++ b/build.sbt @@ -26,7 +26,7 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = { organization := "edu.berkeley.cs" -version := "3.3.3" +version := "3.3.3-RC1" name := "chisel-tutorial" @@ -39,7 +39,7 @@ scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:refle // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. // The following are the default development versions, not the "release" versions. val defaultVersions = Seq( - "chisel-iotesters" -> "1.5.3" + "chisel-iotesters" -> "2.5.0-RC1" ) libraryDependencies ++= defaultVersions.map { case (dep, ver) => From 6239fb3b210a3fb5524187793cca31c9566a058a Mon Sep 17 00:00:00 2001 From: Jack Date: Sat, 18 Dec 2021 07:42:15 +0000 Subject: [PATCH 20/20] Bump version strings. --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 79590dab..c589c037 100644 --- a/build.sbt +++ b/build.sbt @@ -26,7 +26,7 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = { organization := "edu.berkeley.cs" -version := "3.3.3-RC1" +version := "3.3.3-RC2" name := "chisel-tutorial" @@ -39,7 +39,7 @@ scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:refle // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. // The following are the default development versions, not the "release" versions. val defaultVersions = Seq( - "chisel-iotesters" -> "2.5.0-RC1" + "chisel-iotesters" -> "2.5.0-RC2" ) libraryDependencies ++= defaultVersions.map { case (dep, ver) => pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy