Fixes for in-tree barstools

This commit is contained in:
Jerry Zhao
2024-04-19 11:30:15 -07:00
parent d7060f4b5a
commit 9436aea1e8
26 changed files with 40 additions and 43 deletions

View File

@@ -1,6 +1,6 @@
// See LICENSE for license details.
package barstools.macros
package tapeout.macros
/** Trait which can calculate the cost of compiling a memory against a certain
* library memory macro using a cost function.

View File

@@ -5,9 +5,9 @@
* lib - technology SRAM(s) to use to compile mem
*/
package barstools.macros
package tapeout.macros
import barstools.macros.Utils._
import tapeout.macros.Utils._
import firrtl.Utils.{one, zero, BoolType}
import firrtl.annotations._
import firrtl.ir._

View File

@@ -1,8 +1,8 @@
// See LICENSE for license details.
package barstools.macros
package tapeout.macros
import barstools.macros.Utils._
import tapeout.macros.Utils._
import firrtl.Utils.{one, zero}
import firrtl._
import firrtl.ir._

View File

@@ -1,6 +1,6 @@
// See LICENSE for license details.
package barstools.macros
package tapeout.macros
import firrtl.Utils.BoolType
import firrtl.ir._

View File

@@ -1,6 +1,6 @@
// See LICENSE for license details.
package barstools.tapeout.transforms
package tapeout.transforms
import firrtl.Mappers._
import firrtl._

View File

@@ -1,6 +1,6 @@
package barstools.tapeout.transforms
package tapeout.transforms
import barstools.tapeout.transforms.stage._
import tapeout.transforms.stage._
import firrtl._
import firrtl.annotations._
import firrtl.ir._

View File

@@ -1,6 +1,6 @@
// See LICENSE for license details.
package barstools.tapeout.transforms.retime
package tapeout.transforms.retime
import chisel3.experimental.RunFirrtlTransform
import firrtl.annotations._

View File

@@ -1,8 +1,8 @@
// See LICENSE for license details.
package barstools.tapeout.transforms.stage
package tapeout.transforms.stage
import barstools.tapeout.transforms.GenerateModelStageMain
import tapeout.transforms.GenerateModelStageMain
import chisel3.stage.ChiselCli
import firrtl.stage.{RunFirrtlTransformAnnotation}
import firrtl.AnnotationSeq

View File

@@ -1,6 +1,6 @@
// See LICENSE for license details.
package barstools.tapeout.transforms.utils
package tapeout.transforms.utils
import chisel3.experimental.{annotate, ChiselAnnotation}
import firrtl._

View File

@@ -1,4 +1,4 @@
package barstools.tapeout.transforms.utils
package tapeout.transforms.utils
object LowerName {
def apply(s: String): String = s.replace(".", "_").replace("[", "_").replace("]", "")

View File

@@ -1,4 +1,4 @@
package barstools.tapeout.transforms.utils
package tapeout.transforms.utils
import chisel3._

View File

@@ -1,4 +1,4 @@
package barstools.tapeout.transforms.utils
package tapeout.transforms.utils
import firrtl.FileUtils
import net.jcazevedo.moultingyaml._