使用chisel实现一个比较大的工程,如何查看done的进度详解

Use chisel to implement a relatively large-scale project, how to check the progress of done elaborating

我正在使用chisel实现一个需要调用很多相同模块的项目,我正在使用for循环来实现它。项目编译没有问题,但是一直在'Done elaborating'的过程中。使用chisel会生成fir文件,然后是verilog,我想知道在'Done elaborating'过程中去哪里查看中间文件

[info] [0.002] Elaborating design...
[info] [3.443] Done elaborating.

根据您调用 Chisel 的方式,您可以打开 log-level,它应该打印有关通过 FIRRTL 的进度。在 command-line 上,这是通过 -ll info.

完成的

至于“去哪里”找文件,应该都是写到目标目录下的。默认是你当前的工作目录;可以在 command-line.

上用 -td <directory> 设置