1 / 15

Placement

CLB. CLB. CLB. CLB. CLB. CLB. IOB. IOB. IOB. IOB. IOB. IOB. CLB. CLB. CLB. IOB. IOB. IOB. IOB. IOB. IOB. IOB. IOB. IOB. IOB. IOB. IOB. IOB. IOB. IOB. IOB. IOB. IOB. Placement. Assign logic blocks to specific chip locations

jetta
Télécharger la présentation

Placement

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CLB CLB CLB CLB CLB CLB IOB IOB IOB IOB IOB IOB CLB CLB CLB IOB IOB IOB IOB IOB IOB IOB IOB IOB IOB IOB IOB IOB IOB IOB IOB IOB IOB Placement • Assign logic blocks to specific chip locations • Seek to minimize routing distance, congestion

  2. Placement Cost Function - Wirelength • Most systems use Manhattan routing (North, South, East, West, no diagonals) • Wirelength estimate = 1/2*(perimeter of bounding box) = “Semi-perimeter” A1 C3 B3 A2 C2 B2 C1 B1

  3. D A C B Greedy Placement • Create initial placement randomly • old_cost = cost(placement); • for (iteration = 0; iteration < max_iteration; iteration++) { • swap random pair of logic blocks; • new_cost = cost(placement); • if (old_cost < new_cost) • undo_move(); • }

  4. d3 d4 a1 a2 D A d2 a3 d3 c2 d4 c1 b4 a1 b3 a2 A B d2 a3 d1 a4 d1 a4 b1 c4 b1 c4 D C C B b2 c3 b2 c3 c2 c1 b4 b3 Placement Local Minima • Greedy placement algorithms (force-directed, recursive bipartitioning) can easily get stuck in local minima • Need a method that is less susceptible to local minima

  5. Annealing • Annealing: Cooling hot metals to form good crystal structures • Start at high temperatures - atoms move randomly about • Cool at specific cooling schedule - leave enough time for atoms to attract into crystal lattice

  6. Simulated Annealing • Move nodes randomly • Initially “high temperature” - allow bad moves to happen • Lower temperature, accepting less and less bad moves • Slowly “cool” placement to allow good structure to form Cost Possible Placements

  7. SA Acceptance Criteria & Cooling Schedule • Compute delta = cost(old_placement) - cost(new_placement) • if (delta>=0) accept • else if ( ) accept, else reject /* 0<=random<=1 */ • Initially temperature is very high (most bad moves accepted) • Temp slowly goes to 0, with multiple moves attempted at each temperature • Final runs with temp=0 (always reject bad moves) greedily “quench” the system

  8. SA Cost Function • Simulated Annealing requires a cost function that captures quality of placement • Smaller cost means better placement • Multiple concerns captured in one metric INV NOR DFF NAND

  9. Simulated Annealing Algorithm • Create initial placement randomly • old_cost = cost(placement); • for (temp = max_temp; temp >= min_temp; temp = next_temp) { • for (iteration = 0; iteration < max_iteration; iteration++) { • swap random pair of logic blocks; • new_cost = cost(placement); • if (old_cost < new_cost) • if (random >= Func((old_cost - new_cost)/temperature)) • undo_move(); • } • }

  10. CLB CLB CLB CLB CLB CLB IOB IOB IOB IOB IOB IOB CLB CLB CLB IOB IOB IOB IOB IOB IOB IOB IOB IOB IOB IOB IOB IOB IOB IOB IOB IOB IOB Routing • Assign logic blocks to specific chip locations • Seek to minimize routing distance, congestion

  11. Route together all the A’s, and all the B’s, minimizing the amount of metal Dark areas are impassible barriers A B A B A A

  12. Maze Router • Breadth-first search along “wavefront”

  13. Maze Routing Acceleration: A*/Detour Numbers • Cost of each location includes minimum distance to destination

  14. Greedy Multi-terminal Routing • Route until first terminal found. • Unmark all nodes. Nodes on previous path marked as 1. Continue routing

  15. 1 2 2 1 4 4 Order Independent Routing • Can avoid order dependency by iterating: • Until good routing found { • Route nets independent of congestion • Add “penalty” to over-capacity regions • } A B C D E 3 F G H 3 I J K L M N O P Q R S T U V W

More Related