Skip to content

Commit

Permalink
Merge pull request #752 from os-fpga/pass_partitioner_options_in_Setu…
Browse files Browse the repository at this point in the history
…pVPR

pass partitioner options in SetupVPR.cpp
  • Loading branch information
serge-dsa committed Jul 10, 2024
2 parents 2c6da93 + 5b61c6d commit 37df416
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions include/base_fix/PATCHED/SetupVPR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -611,10 +611,13 @@ void SetupPackerOpts(const t_options& Options,
PackerOpts->packer_algorithm = PACK_GREEDY; /* DEFAULT */

PackerOpts->device_layout = Options.device_layout;
PackerOpts->top_mod = Options.top_mod;

PackerOpts->timing_update_type = Options.timing_update_type;
PackerOpts->pack_num_moves = Options.pack_num_moves;
PackerOpts->pack_move_type = Options.pack_move_type;
PackerOpts->use_partitioning_in_pack = Options.use_partitioning_in_pack;
PackerOpts->number_of_molecules_in_partition = Options.number_of_molecules_in_partition;
}

static void SetupNetlistOpts(const t_options& Options, t_netlist_opts& NetlistOpts) {
Expand Down
2 changes: 1 addition & 1 deletion include/packer_fix/cluster_util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2911,7 +2911,7 @@ t_pack_molecule* get_highest_gain_seed_molecule(int& seed_index, const std::vect
}
}
}
VTR_ASSERT(best != nullptr);
//VTR_ASSERT(best != nullptr);
return best;
}
}
Expand Down
2 changes: 1 addition & 1 deletion planning/src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
static const char* _pln_VERSION_STR = "pln0244";
static const char* _pln_VERSION_STR = "pln0245";

#include "RS/rsEnv.h"
#include "util/pln_log.h"
Expand Down

0 comments on commit 37df416

Please sign in to comment.