Hello, I am new to this and still learning. I am currently getting this error, where can I find more information on my error and how to solve it?
I am just trying to run the flow for a very simple sv circuit.
``default_nettype none`
module Circuit (
    output var logic b,
    input var logic clk,
    input var logic enable,
    input var logic a
);
  always_ff @(posedge clk)
    if (enable) b <= a;
    else b <= 0;
endmodule
[18:22:27] ERROR    Subprocess had a non-zero exit.                                                                                                                                                                                                                     step.py:1170
[18
2227] ERROR    Last 10 line(s):                                                                                                                                                                                                                                    step.py:1175
                    [INFO] Setting signal max routing layer to: met5 and clock max routing layer to met5.
                    {*}-density 0.81875 -timing_driven -routability_driven -skip_io -pad_right 0 -pad_left 0 -init_wirelength_coef 0.25
                    [WARNING GPL-0150] -skip_io will disable timing driven mode.
                    [WARNING GPL-0151] -skip_io will disable routability driven mode.
                    [INFO GPL-0002] DBU: 1000
                    [INFO GPL-0003] SiteSize: 460 2720
                    [INFO GPL-0004] CoreAreaLxLy: 5520 10880
                    [INFO GPL-0005] CoreAreaUxUy: 12880 16320
                    [ERROR GPL-0120] instance 
2 width is larger than core.
                    Error: gpl.tcl, 69 GPL-0120
[18
2227] ERROR    Full log file: 'runs/RUN_2024-03-18_18-22-24/18-openroad-globalplacementskipio/openroad-globalplacementskipio.log'                                                                                                                                  step.py:1176
[18
2227] WARNING  The following warnings were generated by the flow:                                                                                                                                                                                                   flow.py:628
[18
2227] WARNING  'PNR_SDC_FILE' is not defined. Using generic fallback SDC for OpenROAD PnR steps.                                                                                                                                                                    flow.py:629
                    'SIGNOFF_SDC_FILE' is not defined. Using generic fallback SDC for OpenROAD PnR steps.
                    'PL_TARGET_DENSITY_PCT' not explicitly set, using dynamically calculated target density: 81.87500…
[18
2227] ERROR    The following error was encountered while running the flow:                                                                                                                                                                                      
main.py:152
                    Global Placement Skip IO: subprocess (1, ['openroad', '-exit', '-no_splash', '-metrics', '/home/pontus/repositories/pm32/runs/RUN_2024-03-18_18-22-24/18-openroad-globalplacementskipio/or_metrics_out.json',
                    '/nix/store/jj7zqc4z6fg8plw8w86wpl589yapxwlz-python3-3.11.6-env/lib/python3.11/site-packages/openlane/scripts/openroad/gpl.tcl']) failed
[18
2227] ERROR    OpenLane will now quit.