mirror of
https://github.com/The-OpenROAD-Project/OpenLane.git
synced 2026-05-29 00:23:55 +08:00
~ Reimplemented the default serial/parallel multiplier to be a bit less cryptic and eliminate linter warnings; and added a proper testbench
~ Reimplemented deprecated variable translation behavior to account for the situation where a deprecated variable's value does not match the default for the new value, which causes a crash
~ Slightly improved warning for designs having been black-boxed during STA
~ PDN Generation Updates
~ Renamed `DESIGN_IS_CORE` to `FP_PDN_MULTILAYER` with translation behavior
~ PDN generation will now always attempt to extend to core ring (which is inert if core rings do not exist)
~ Fixed bug where `FP_PDN_MULTILAYER` being set to `0` would attempt to create a core-ring on two layers anyway
~ IR drop now prints a warning if `VSRC_LOC_FILE` is not provided
- Removed deprecation behavior for `GLB_RT` variables - it's been over a year (>=6 mo as promised)
42 lines
1.1 KiB
Tcl
Executable File
42 lines
1.1 KiB
Tcl
Executable File
# Copyright 2020 Efabless Corporation
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# Synthesis
|
|
set ::env(QUIT_ON_ASSIGN_STATEMENTS) 0
|
|
set ::env(QUIT_ON_UNMAPPED_CELLS) 1
|
|
set ::env(QUIT_ON_SYNTH_CHECKS) 1
|
|
set ::env(SYNTH_CHECKS_ALLOW_TRISTATE) 1
|
|
set ::env(LINTER_INCLUDE_PDK_MODELS) 1
|
|
|
|
# STA
|
|
set ::env(QUIT_ON_TIMING_VIOLATIONS) 1
|
|
set ::env(QUIT_ON_HOLD_VIOLATIONS) 1
|
|
set ::env(QUIT_ON_SETUP_VIOLATIONS) 1
|
|
|
|
|
|
# Routing
|
|
set ::env(QUIT_ON_TR_DRC) 1
|
|
set ::env(QUIT_ON_LONG_WIRE) 0
|
|
|
|
# Magic
|
|
set ::env(QUIT_ON_MAGIC_DRC) 1
|
|
set ::env(QUIT_ON_ILLEGAL_OVERLAPS) 1
|
|
|
|
# Netgen
|
|
set ::env(QUIT_ON_LVS_ERROR) 1
|
|
|
|
# Klayout
|
|
set ::env(QUIT_ON_XOR_ERROR) 1
|
|
set ::env(QUIT_ON_KLAYOUT_DRC) 1
|