gpt4 book ai didi

chisel - 不绑定(bind)到 chisel 内存中的可综合节点异常

转载 作者:行者123 更新时间:2023-12-02 08:54:15 26 4
gpt4 key购买 nike

我在凿子代码中遇到以下异常。

[info] - should correctly write and read data *** FAILED ***
[info] chisel3.core.Binding$BindingException: 'this' (chisel3.core.UInt@d7): Not bound to synthesizable node, currently only Type description
[info] at chisel3.core.Binding$.checkSynthesizable(Binding.scala:184)
[info] at chisel3.core.Data.connect(Data.scala:139)
[info] at chisel3.core.Data.$colon$eq(Data.scala:204)
[info] at Common.OnChipMemory$$anonfun$1.apply(memory.scala:88)
[info] at Common.OnChipMemory$$anonfun$1.apply(memory.scala:60)
[info] at scala.collection.immutable.Range.foreach(Range.scala:166)
[info] at Common.OnChipMemory.<init>(memory.scala:60)
[info] at Common.memoryTester$$anonfun$3$$anonfun$apply$1$$anonfun$apply$mcV$sp$1.apply(memoryTest.scala:32)
[info] at Common.memoryTester$$anonfun$3$$anonfun$apply$1$$anonfun$apply$mcV$sp$1.apply(memoryTest.scala:32)
[info] at chisel3.core.Module$.do_apply(Module.scala:35)

从这个堆栈跟踪和一些试验和错误测试中,我可以发现该行,

read_data := chipMem(data_idx) //line 88

导致了这个问题。下面发布了紧接在此之前的代码。

val lsb_idx = log2Up(4) // index of lsb in address

val chipMem = Mem(Vec(4, UInt(width = 8)), num_lines) // memory

val data_idx = req_addr >> UInt(lsb_idx) //req_addr is a UInt

val read_data = Bits()

此后我一直没能找到问题的原因。我尝试将 read_data 更改为 UInt 的 Vec 并使用 read() 从内存中读取。

最佳答案

问题出在 read_data 的声明上。 Bits() 只是构造一个类型,而不是一个实际的硬件值。您需要将 read_data 设置为实际的 Wire 而不仅仅是 Bits 类型。另请注意,read_data 的类型需要与 Mem 的类型相同,因此您应该按如下方式声明 read_data:

val read_data = Wire(Vec(4, UInt(8.W)) 

关于chisel - 不绑定(bind)到 chisel 内存中的可综合节点异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41909768/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com