Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: efabless/openlane2
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: efabless/openlane2
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dev
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 8 commits
  • 32 files changed
  • 2 contributors

Commits on Dec 15, 2024

  1. feat!: dynamic designformat registration (#612)

    ## Misc Enhancements/Bugfixes
    
    * `openlane.state`
      * `DesignFormat`
    * Now a dataclass encapsulating the information about the DesignFormat
    directly.
     	 * `.factory` is a factory for retrieval of DesignFormats by ID
    * `DesignFormats` may be registered to the factory using `.register()`
    * Registrations for previously included `DesignFormat`s now moved to
    where appropriate.
    * Renamed `POWERED_NETLIST_NO_PHYSICAL_CELLS` to
    `LOGICAL_POWERED_NETLIST`
    * Renamed `POWERED_NETLIST_SDF_FRIENDLY` to
    `SDF_FRIENDLY_POWERED_NETLIST`
      * `State`
    * States initialized with keys that have values that are `None` now
    remove said keys.
    
    ## API Breaks
    
    * `openlane.steps`
      * `TclStep` now uses the IDs uppercased for `CURRENT_` and `SAVE_`.
    
    * `openlane.state`
    * `State` no longer includes all `DesignFormat`s as guaranteed keys and
    `.get` must be used to avoide `KeyErrors`
    * `DesignFormat` is no longer an enumeration and is not iterable.
    However, to avoid massive codebase changes, you can still access
    `DesignFormat`s registered to the factory using the dot notation (e.g.
    `DesignFormat.NETLIST`), using either their `id` or any of their `alts`.
    * Removed `DesignFormatObject`: the DesignFormat class itself is now a
    dataclass incorporating these fields, except `name`, which has been
    renamed to `full_name`. The enumeration's name has been added to `alts`,
    while `.name` is now an alias for `.id`.
    donn authored Dec 15, 2024
    Configuration menu
    Copy the full SHA
    7959772 View commit details
    Browse the repository at this point in the history
  2. feat: expose some CTS options (#589)

    * `OpenROAD.CTS`
      * Added flags `CTS_OBSTRUCTION_AWARE` and `CTS_BALANCE_LEVELS`
      * Added `CTS_SINK_BUFFER_MAX_CAP_DERATE_PCT`
    kareefardi authored Dec 15, 2024
    Configuration menu
    Copy the full SHA
    ef539d2 View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2024

  1. Merge branch 'main' into dev

    donn committed Dec 16, 2024
    Configuration menu
    Copy the full SHA
    59f1752 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c5d22d1 View commit details
    Browse the repository at this point in the history
  3. feat: update to nixos 24.11 (#617)

    ## Tool Updates
    
    * Updated nix-eda
       * Updated nixpkgs to nixos-24.11 (@ `3c53b4b`)
       * Updated KLayout to `0.29.9`
       * Updated Magic to `8.3.503`
       * Updated Netgen to `1.5.287`
    * Updated ioplace-parser to`0.4.0`
    * Updated OpenROAD to `1d61007`
      * Updated OpenSTA to `aa598a2`
    
    Co-authored-by: Kareem Farid <kareefardi@users.noreply.github.com>
    donn and kareefardi authored Dec 16, 2024
    Configuration menu
    Copy the full SHA
    77aae99 View commit details
    Browse the repository at this point in the history

Commits on Jan 1, 2025

  1. misc: use <next version>.dev versioning for dev branch

    Signed-off-by: Mohamed Gaber <donn@efabless.com>
    donn committed Jan 1, 2025
    Configuration menu
    Copy the full SHA
    318b684 View commit details
    Browse the repository at this point in the history

Commits on Jan 2, 2025

  1. feat: DRT layout and DRC snapshots (#628)

    ## Steps
    
    * `OpenROAD.DetailedRouting`
    * Added `DRT_SAVE_SNAPSHOTS` which enables saving snapshots of the
    layout each detalied routing iteration.
      * Added `DRT_SAVE_DRC_REPORT_ITERS`
    
    Signed-off-by: Kareem Farid <kareefardi@users.noreply.github.com>
    kareefardi authored Jan 2, 2025
    Configuration menu
    Copy the full SHA
    39a17eb View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2025

  1. feat: overridable corner for synthesis (#566)

    * `Yosys.*`
      * Add `SYNTH_CORNER`
    
    Signed-off-by: Kareem Farid <kareefardi@users.noreply.github.com>
    kareefardi authored Jan 5, 2025
    Configuration menu
    Copy the full SHA
    7787375 View commit details
    Browse the repository at this point in the history
Loading