Skip to content

Commit 5b61c6d

Browse files
committed
pass partitioner options in SetupVPR.cpp
1 parent 2c6da93 commit 5b61c6d

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

include/base_fix/PATCHED/SetupVPR.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -611,10 +611,13 @@ void SetupPackerOpts(const t_options& Options,
611611
PackerOpts->packer_algorithm = PACK_GREEDY; /* DEFAULT */
612612

613613
PackerOpts->device_layout = Options.device_layout;
614+
PackerOpts->top_mod = Options.top_mod;
614615

615616
PackerOpts->timing_update_type = Options.timing_update_type;
616617
PackerOpts->pack_num_moves = Options.pack_num_moves;
617618
PackerOpts->pack_move_type = Options.pack_move_type;
619+
PackerOpts->use_partitioning_in_pack = Options.use_partitioning_in_pack;
620+
PackerOpts->number_of_molecules_in_partition = Options.number_of_molecules_in_partition;
618621
}
619622

620623
static void SetupNetlistOpts(const t_options& Options, t_netlist_opts& NetlistOpts) {

include/packer_fix/cluster_util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2911,7 +2911,7 @@ t_pack_molecule* get_highest_gain_seed_molecule(int& seed_index, const std::vect
29112911
}
29122912
}
29132913
}
2914-
VTR_ASSERT(best != nullptr);
2914+
//VTR_ASSERT(best != nullptr);
29152915
return best;
29162916
}
29172917
}

planning/src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
static const char* _pln_VERSION_STR = "pln0244";
1+
static const char* _pln_VERSION_STR = "pln0245";
22

33
#include "RS/rsEnv.h"
44
#include "util/pln_log.h"

0 commit comments

Comments
 (0)