Skip to content

Commit c9216f2

Browse files
committed
Merge branch 'master' into grid-branch
Signed-off-by: braydenl9988 <braydenl9988@gmail.com>
2 parents 7b12927 + 2976317 commit c9216f2

File tree

332 files changed

+3807
-2432
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

332 files changed

+3807
-2432
lines changed

MODULE.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ bazel_dep(name = "bazel-orfs")
154154
# To bump version, run: bazelisk run @bazel-orfs//:bump
155155
git_override(
156156
module_name = "bazel-orfs",
157-
commit = "264aef66bf3adebe19ea7d18dabdc24b9733c8c2",
157+
commit = "da01065203fbcc043c82318b544fbe111053b9d0",
158158
remote = "https://github.com/The-OpenROAD-Project/bazel-orfs.git",
159159
)
160160

@@ -163,10 +163,10 @@ orfs = use_extension("@bazel-orfs//:extension.bzl", "orfs_repositories")
163163
# To bump version, run: bazelisk run @bazel-orfs//:bump
164164
orfs.default(
165165
# Official image https://hub.docker.com/r/openroad/orfs/tags
166-
image = "docker.io/openroad/orfs:v3.0-3845-gbefd38218",
166+
image = "docker.io/openroad/orfs:v3.0-3872-g66e441c6c",
167167
# Use OpenROAD of this repo instead of from the docker image
168168
openroad = "//:openroad",
169-
sha256 = "4982a5b87588e4699f11deaed3286cba8b65d144e439c6f5845656abebfc0971",
169+
sha256 = "f75321f10023a8bf99b1ed5dfe1dab6351f588eda24f186a66e9145fd9b76fd1",
170170
)
171171
use_repo(orfs, "com_github_nixos_patchelf_download")
172172
use_repo(orfs, "docker_orfs")

MODULE.bazel.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Tech.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#include "ord/OpenRoad.hh"
1414
#include "sta/Corner.hh"
1515
#include "sta/Liberty.hh"
16+
#include "sta/MinMax.hh"
1617
#include "sta/Units.hh"
1718

1819
namespace ord {

src/Timing.cc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@
1919
#include "ord/OpenRoad.hh"
2020
#include "ord/Tech.h"
2121
#include "rsz/Resizer.hh"
22+
#include "sta/Clock.hh"
2223
#include "sta/Corner.hh"
2324
#include "sta/Liberty.hh"
25+
#include "sta/MinMax.hh"
26+
#include "sta/PowerClass.hh"
2427
#include "sta/Search.hh"
2528
#include "sta/TimingArc.hh"
2629
#include "sta/TimingRole.hh"

src/cgt/include/cgt/NetworkBuilder.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
#include "db_sta/dbNetwork.hh"
1111
#include "db_sta/dbSta.hh"
12+
#include "sta/Liberty.hh"
1213
#include "utl/deleter.h"
1314

1415
namespace cgt {

src/cts/src/CtsGraphics.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#include <string>
99
#include <vector>
1010

11+
#include "gui/gui.h"
1112
#include "odb/geom.h"
1213
#include "utl/Logger.h"
1314

src/cts/src/LatencyBalancer.cpp

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@
33

44
#include "LatencyBalancer.h"
55

6+
#include <algorithm>
7+
#include <cmath>
8+
#include <limits>
69
#include <map>
710
#include <set>
11+
#include <stack>
812
#include <string>
913
#include <utility>
1014
#include <vector>
@@ -14,13 +18,22 @@
1418
#include "TreeBuilder.h"
1519
#include "cts/TritonCTS.h"
1620
#include "odb/db.h"
21+
#include "odb/dbSet.h"
22+
#include "odb/geom.h"
23+
#include "sta/Clock.hh"
24+
#include "sta/Delay.hh"
1725
#include "sta/Graph.hh"
1826
#include "sta/GraphDelayCalc.hh"
1927
#include "sta/Liberty.hh"
28+
#include "sta/NetworkClass.hh"
29+
#include "sta/Path.hh"
2030
#include "sta/PathAnalysisPt.hh"
2131
#include "sta/PathEnd.hh"
2232
#include "sta/PathExpanded.hh"
2333
#include "sta/Sdc.hh"
34+
#include "sta/TimingArc.hh"
35+
#include "sta/TimingModel.hh"
36+
#include "utl/Logger.h"
2437

2538
namespace cts {
2639

src/cts/src/LatencyBalancer.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include "TreeBuilder.h"
1616
#include "Util.h"
1717
#include "odb/db.h"
18+
#include "sta/Delay.hh"
1819

1920
namespace utl {
2021
class Logger;

src/cts/src/LevelBalancer.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include "cts/TritonCTS.h"
1616
#include "odb/db.h"
1717
#include "odb/dbObject.h"
18+
#include "utl/Logger.h"
1819

1920
namespace cts {
2021

src/cts/src/TechChar.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,16 @@
2424
#include "rsz/Resizer.hh"
2525
#include "sta/Graph.hh"
2626
#include "sta/Liberty.hh"
27+
#include "sta/LibertyClass.hh"
28+
#include "sta/MinMax.hh"
2729
#include "sta/PathAnalysisPt.hh"
30+
#include "sta/PowerClass.hh"
2831
#include "sta/Sdc.hh"
2932
#include "sta/Search.hh"
3033
#include "sta/TableModel.hh"
3134
#include "sta/TimingArc.hh"
35+
#include "sta/TimingModel.hh"
36+
#include "sta/Transition.hh"
3237
#include "sta/Units.hh"
3338
#include "utl/Logger.h"
3439

0 commit comments

Comments
 (0)