-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path__init__.py
More file actions
37 lines (31 loc) · 784 Bytes
/
Copy path__init__.py
File metadata and controls
37 lines (31 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
"""
H-Anchor: Hierarchical Anchor-Based Placement Algorithm
A VLSI/FPGA placement algorithm inspired by HNSW (Hierarchical Navigable Small World).
Example Usage:
from hap import HAnchorPlacer, PlacementConfig
from hap.benchmarks import generate_clustered_netlist
graph, cells = generate_clustered_netlist()
placer = HAnchorPlacer()
placer.load_netlist(graph, cells)
placer.run()
"""
from .h_anchor import (
HAnchorPlacer,
PlacementConfig,
HierarchyBuilder,
ForceDirectedEngine,
Legalizer,
Cell,
ScoringMethod,
)
__version__ = "1.0.0"
__author__ = "H-Anchor Team"
__all__ = [
"HAnchorPlacer",
"PlacementConfig",
"HierarchyBuilder",
"ForceDirectedEngine",
"Legalizer",
"Cell",
"ScoringMethod",
]