|
10 | 10 | #include "full_legalizer.h"
|
11 | 11 |
|
12 | 12 | #include <list>
|
| 13 | +#include <memory> |
13 | 14 | #include <unordered_set>
|
14 | 15 | #include <vector>
|
15 | 16 |
|
| 17 | +#include "FlatPlacementInfo.h" |
| 18 | +#include "ap_flow_enums.h" |
| 19 | +#include "device_grid.h" |
16 | 20 | #include "partial_placement.h"
|
17 | 21 | #include "ShowSetup.h"
|
18 | 22 | #include "ap_netlist_fwd.h"
|
|
25 | 29 | #include "logic_types.h"
|
26 | 30 | #include "pack.h"
|
27 | 31 | #include "physical_types.h"
|
| 32 | +#include "place.h" |
28 | 33 | #include "place_and_route.h"
|
29 | 34 | #include "place_constraints.h"
|
30 | 35 | #include "place_macro.h"
|
|
42 | 47 | #include "vtr_time.h"
|
43 | 48 | #include "vtr_vector.h"
|
44 | 49 |
|
| 50 | + |
| 51 | +std::unique_ptr<FullLegalizer> make_full_legalizer(e_ap_full_legalizer full_legalizer_type, |
| 52 | + const APNetlist& ap_netlist, |
| 53 | + const AtomNetlist& atom_netlist, |
| 54 | + const Prepacker& prepacker, |
| 55 | + t_vpr_setup& vpr_setup, |
| 56 | + const t_arch& arch, |
| 57 | + const DeviceGrid& device_grid, |
| 58 | + const std::vector<t_logical_block_type>& logical_block_types) { |
| 59 | + switch (full_legalizer_type) { |
| 60 | + case e_ap_full_legalizer::Naive: |
| 61 | + return std::make_unique<NaiveFullLegalizer>(ap_netlist, |
| 62 | + atom_netlist, |
| 63 | + prepacker, |
| 64 | + vpr_setup, |
| 65 | + arch, |
| 66 | + device_grid, |
| 67 | + logical_block_types); |
| 68 | + case e_ap_full_legalizer::APPack: |
| 69 | + return std::make_unique<APPack>(ap_netlist, |
| 70 | + atom_netlist, |
| 71 | + prepacker, |
| 72 | + vpr_setup, |
| 73 | + arch, |
| 74 | + device_grid, |
| 75 | + logical_block_types); |
| 76 | + default: |
| 77 | + VPR_FATAL_ERROR(VPR_ERROR_AP, |
| 78 | + "Unrecognized full legalizer type"); |
| 79 | + } |
| 80 | +} |
| 81 | + |
45 | 82 | namespace {
|
46 | 83 |
|
47 | 84 | /// @brief A unique ID for each root tile on the device.
|
@@ -239,24 +276,24 @@ static LegalizationClusterId create_new_cluster(PackMoleculeId seed_molecule_id,
|
239 | 276 | return LegalizationClusterId();
|
240 | 277 | }
|
241 | 278 |
|
242 |
| -void FullLegalizer::create_clusters(const PartialPlacement& p_placement) { |
| 279 | +void NaiveFullLegalizer::create_clusters(const PartialPlacement& p_placement) { |
243 | 280 | // PACKING:
|
244 | 281 | // Initialize the cluster legalizer (Packing)
|
245 | 282 | // FIXME: The legalization strategy is currently set to full. Should handle
|
246 | 283 | // this better to make it faster.
|
247 |
| - t_pack_high_fanout_thresholds high_fanout_thresholds(packer_opts_.high_fanout_threshold); |
| 284 | + t_pack_high_fanout_thresholds high_fanout_thresholds(vpr_setup_.PackerOpts.high_fanout_threshold); |
248 | 285 | ClusterLegalizer cluster_legalizer(atom_netlist_,
|
249 | 286 | prepacker_,
|
250 | 287 | logical_block_types_,
|
251 |
| - lb_type_rr_graphs_, |
252 |
| - user_models_, |
253 |
| - library_models_, |
254 |
| - packer_opts_.target_external_pin_util, |
| 288 | + vpr_setup_.PackerRRGraph, |
| 289 | + arch_.models, |
| 290 | + arch_.model_library, |
| 291 | + vpr_setup_.PackerOpts.target_external_pin_util, |
255 | 292 | high_fanout_thresholds,
|
256 | 293 | ClusterLegalizationStrategy::FULL,
|
257 |
| - packer_opts_.enable_pin_feasibility_filter, |
258 |
| - packer_opts_.feasible_block_array_size, |
259 |
| - packer_opts_.pack_verbosity); |
| 294 | + vpr_setup_.PackerOpts.enable_pin_feasibility_filter, |
| 295 | + vpr_setup_.PackerOpts.feasible_block_array_size, |
| 296 | + vpr_setup_.PackerOpts.pack_verbosity); |
260 | 297 | // Create clusters for each tile.
|
261 | 298 | // Start by giving each root tile a unique ID.
|
262 | 299 | size_t grid_width = device_grid_.width();
|
@@ -330,24 +367,24 @@ void FullLegalizer::create_clusters(const PartialPlacement& p_placement) {
|
330 | 367 |
|
331 | 368 | // Check and output the clustering.
|
332 | 369 | std::unordered_set<AtomNetId> is_clock = alloc_and_load_is_clock();
|
333 |
| - check_and_output_clustering(cluster_legalizer, packer_opts_, is_clock, arch_); |
| 370 | + check_and_output_clustering(cluster_legalizer, vpr_setup_.PackerOpts, is_clock, &arch_); |
334 | 371 | // Reset the cluster legalizer. This is required to load the packing.
|
335 | 372 | cluster_legalizer.reset();
|
336 | 373 | // Regenerate the clustered netlist from the file generated previously.
|
337 | 374 | // FIXME: This writing and loading from a file is wasteful. Should generate
|
338 | 375 | // the clusters directly from the cluster legalizer.
|
339 |
| - vpr_load_packing(vpr_setup_, *arch_); |
| 376 | + vpr_load_packing(vpr_setup_, arch_); |
340 | 377 | load_cluster_constraints();
|
341 | 378 | const ClusteredNetlist& clb_nlist = g_vpr_ctx.clustering().clb_nlist;
|
342 | 379 |
|
343 | 380 | // Verify the packing and print some info
|
344 |
| - check_netlist(packer_opts_.pack_verbosity); |
| 381 | + check_netlist(vpr_setup_.PackerOpts.pack_verbosity); |
345 | 382 | writeClusteredNetlistStats(vpr_setup_.FileNameOpts.write_block_usage);
|
346 | 383 | print_pb_type_count(clb_nlist);
|
347 | 384 | }
|
348 | 385 |
|
349 |
| -void FullLegalizer::place_clusters(const ClusteredNetlist& clb_nlist, |
350 |
| - const PartialPlacement& p_placement) { |
| 386 | +void NaiveFullLegalizer::place_clusters(const ClusteredNetlist& clb_nlist, |
| 387 | + const PartialPlacement& p_placement) { |
351 | 388 | // PLACING:
|
352 | 389 | // Create a lookup from the AtomBlockId to the APBlockId
|
353 | 390 | vtr::vector<AtomBlockId, APBlockId> atom_to_ap_block(atom_netlist_.blocks().size());
|
@@ -409,7 +446,7 @@ void FullLegalizer::place_clusters(const ClusteredNetlist& clb_nlist,
|
409 | 446 | // - This may be needed to perform SA. Not needed right now.
|
410 | 447 | }
|
411 | 448 |
|
412 |
| -void FullLegalizer::legalize(const PartialPlacement& p_placement) { |
| 449 | +void NaiveFullLegalizer::legalize(const PartialPlacement& p_placement) { |
413 | 450 | // Create a scoped timer for the full legalizer
|
414 | 451 | vtr::ScopedStartFinishTimer full_legalizer_timer("AP Full Legalizer");
|
415 | 452 |
|
@@ -449,3 +486,65 @@ void FullLegalizer::legalize(const PartialPlacement& p_placement) {
|
449 | 486 | post_place_sync();
|
450 | 487 | }
|
451 | 488 |
|
| 489 | +void APPack::legalize(const PartialPlacement& p_placement) { |
| 490 | + // Create a scoped timer for the full legalizer |
| 491 | + vtr::ScopedStartFinishTimer full_legalizer_timer("AP Full Legalizer"); |
| 492 | + |
| 493 | + // Convert the Partial Placement (APNetlist) to a flat placement (AtomNetlist). |
| 494 | + FlatPlacementInfo flat_placement_info(atom_netlist_); |
| 495 | + for (APBlockId ap_blk_id : ap_netlist_.blocks()) { |
| 496 | + PackMoleculeId mol_id = ap_netlist_.block_molecule(ap_blk_id); |
| 497 | + const t_pack_molecule& mol = prepacker_.get_molecule(mol_id); |
| 498 | + for (AtomBlockId atom_blk_id : mol.atom_block_ids) { |
| 499 | + if (!atom_blk_id.is_valid()) |
| 500 | + continue; |
| 501 | + flat_placement_info.blk_x_pos[atom_blk_id] = p_placement.block_x_locs[ap_blk_id]; |
| 502 | + flat_placement_info.blk_y_pos[atom_blk_id] = p_placement.block_y_locs[ap_blk_id]; |
| 503 | + flat_placement_info.blk_layer[atom_blk_id] = p_placement.block_layer_nums[ap_blk_id]; |
| 504 | + flat_placement_info.blk_sub_tile[atom_blk_id] = p_placement.block_sub_tiles[ap_blk_id]; |
| 505 | + } |
| 506 | + } |
| 507 | + |
| 508 | + // Run the Packer stage with the flat placement as a hint. |
| 509 | + try_pack(&vpr_setup_.PackerOpts, |
| 510 | + &vpr_setup_.AnalysisOpts, |
| 511 | + arch_, |
| 512 | + vpr_setup_.RoutingArch, |
| 513 | + vpr_setup_.user_models, |
| 514 | + vpr_setup_.library_models, |
| 515 | + vpr_setup_.PackerRRGraph, |
| 516 | + flat_placement_info); |
| 517 | + |
| 518 | + // The Packer stores the clusters into a .net file. Load the packing file. |
| 519 | + // FIXME: This should be removed. Reading from a file is strange. |
| 520 | + vpr_load_packing(vpr_setup_, arch_); |
| 521 | + load_cluster_constraints(); |
| 522 | + const ClusteredNetlist& clb_nlist = g_vpr_ctx.clustering().clb_nlist; |
| 523 | + |
| 524 | + // Verify the packing and print some info |
| 525 | + check_netlist(vpr_setup_.PackerOpts.pack_verbosity); |
| 526 | + writeClusteredNetlistStats(vpr_setup_.FileNameOpts.write_block_usage); |
| 527 | + print_pb_type_count(clb_nlist); |
| 528 | + |
| 529 | + // Pass the clustering into the Placer with the flat placement as a hint. |
| 530 | + // TODO: This should only be the initial placer. Running the full SA would |
| 531 | + // be more of a Detailed Placer. |
| 532 | + const auto& placement_net_list = (const Netlist<>&)clb_nlist; |
| 533 | + try_place(placement_net_list, |
| 534 | + vpr_setup_.PlacerOpts, |
| 535 | + vpr_setup_.RouterOpts, |
| 536 | + vpr_setup_.AnalysisOpts, |
| 537 | + vpr_setup_.NocOpts, |
| 538 | + arch_.Chans, |
| 539 | + &vpr_setup_.RoutingArch, |
| 540 | + vpr_setup_.Segments, |
| 541 | + arch_.directs, |
| 542 | + flat_placement_info, |
| 543 | + false /* is_flat */); |
| 544 | + |
| 545 | + // TODO: This was taken from vpr_api. Not sure why it is needed. Should be |
| 546 | + // made part of the placement and verify placement should check for |
| 547 | + // it. |
| 548 | + post_place_sync(); |
| 549 | +} |
| 550 | + |
0 commit comments