openlane2 icon indicating copy to clipboard operation
openlane2 copied to clipboard

Synthesis Exploration dead lock

Open EpSilicon opened this issue 9 months ago • 1 comments

Hello The Synthesis Exploration flow in Openlane v2.0.4 seems to be stuck at DELAY 3.

RTL is: `module comp32( a, b, clk, z);

input [31:0] a, b; //define inputs and outputs input clk; output z;

reg z;

always @ (posedge clk) begin if (a > b) z <= 1'b1; else z <= 1'b0; end endmodule`

and config.json is: { "DESIGN_NAME": "comp32", "PDK": "sky130A", "STD_CELL_LIBRARY": "sky130_fd_sc_hd", "VERILOG_FILES": "dir::src/*.v", "CLOCK_PORT": "clk", "CLOCK_PERIOD": 25 } Is there something wrong here?

Thanks and regards, Erwann

EpSilicon avatar May 08 '24 12:05 EpSilicon

Hi @EpSilicon -- could just be a Yosys bug.

Could I ask you to use the issue template please? It helps us address these issues as we're lacking critical information (including your platform, your method of installation, etc.)

donn avatar May 12 '24 10:05 donn

Continued in #501

donn avatar Jul 03 '24 14:07 donn