1 / 10

Linear ordering and application to placement

Linear ordering and application to placement. By S. Kang. Linear Ordering generates a linear sequence of elements of a set of interconnected elements. This sequence is used for constructive initial-placement methods.

ssallie
Télécharger la présentation

Linear ordering and application to 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. Linear ordering and application to placement By S. Kang

  2. Linear Ordering generates a linear sequence of elements of a set of interconnected elements. This sequence is used for constructive initial-placement methods. Important difference from other previous techniques: starts the ordering process from the most lightly connected module. Abstract

  3. Problem • With a set of connected modules, we want to put the components in a linear sequence so that the number of nets cut by a plane separating two adjacent components is minimized.

  4. Solution • Algorithm Linear_Ordering • S = Set of all modules • Order = sequence of ordered modules (now empty) • Begin • Seed = selected seed module; • Order = seed; • S = S – seed; Repeat { Compute gain for each module m; If a tie { Select module that terminates the largest number of nets; } If still a tie { Select the module with the largest number of continuing nets; } If still a tie { Select the module with the least number of connections; } Else break tie however desired Order = Order + new module; S = S – new module; } until S is empty End

  5. Gain Calculation • New net: a net created with the current module • Terminated net: a net that ends with the current module • Continuing net: an already created net that does not terminate with this module • Gain = terminated nets – new nets

  6. Net Example terminating new Module under consideration continuing

  7. Example

  8. Linear ordering does not use look-ahead for tie breaking, so it is not sufficient for real circuits. Problem: Global nets Global vs Local nets Local nets – nets connected to a select few modules Global nets – nets connected to every module in the set Problems

  9. What’s wrong with Global Nets? Picking a seed • No matter what seed is picked, it will contain a net connected to every other module in the set. • In practice, this causes less than ideal choices for future module selection. What to do about them • Ignore them! • Because of folding, treating the special case of global nets is not necessarily ideal in placement

  10. Folding Example A B C D E F A B C F D E F E D E D F A B C A B C

More Related