[core] code format
This commit is contained in:
parent
a2c3af60d7
commit
ae95357991
|
@ -454,8 +454,7 @@ int build_top_module_fine_grained_child_instances(
|
|||
const ConfigProtocol& config_protocol, const CircuitModelId& sram_model,
|
||||
const bool& frame_view, const bool& compact_routing_hierarchy,
|
||||
const bool& duplicate_grid_pin, const FabricKey& fabric_key,
|
||||
const bool& group_config_block,
|
||||
const bool& perimeter_cb,
|
||||
const bool& group_config_block, const bool& perimeter_cb,
|
||||
const bool& verbose) {
|
||||
int status = CMD_EXEC_SUCCESS;
|
||||
std::map<t_rr_type, vtr::Matrix<size_t>> cb_instance_ids;
|
||||
|
|
|
@ -44,8 +44,7 @@ int build_top_module_fine_grained_child_instances(
|
|||
const ConfigProtocol& config_protocol, const CircuitModelId& sram_model,
|
||||
const bool& frame_view, const bool& compact_routing_hierarchy,
|
||||
const bool& duplicate_grid_pin, const FabricKey& fabric_key,
|
||||
const bool& group_config_block,
|
||||
const bool& perimeter_cb,
|
||||
const bool& group_config_block, const bool& perimeter_cb,
|
||||
const bool& verbose);
|
||||
|
||||
} /* end namespace openfpga */
|
||||
|
|
|
@ -1290,7 +1290,9 @@ static int build_top_module_global_net_from_clock_arch_tree(
|
|||
vtr::Point<size_t> entry_cb_coord(entry_point.x(), entry_point.y());
|
||||
const RRGSB& rr_gsb = device_rr_gsb.get_gsb_by_cb_coordinate(
|
||||
entry_track_type, entry_cb_coord);
|
||||
vtr::Point<size_t> entry_unique_cb_coord = device_rr_gsb.get_cb_unique_module(entry_track_type, entry_cb_coord).get_cb_coordinate(entry_track_type);
|
||||
vtr::Point<size_t> entry_unique_cb_coord =
|
||||
device_rr_gsb.get_cb_unique_module(entry_track_type, entry_cb_coord)
|
||||
.get_cb_coordinate(entry_track_type);
|
||||
std::string cb_module_name = generate_connection_block_module_name(
|
||||
entry_track_type, entry_unique_cb_coord);
|
||||
ModuleId cb_module = module_manager.find_module(cb_module_name);
|
||||
|
@ -1324,8 +1326,7 @@ int add_top_module_global_ports_from_grid_modules(
|
|||
const DeviceRRGSB& device_rr_gsb,
|
||||
const std::map<t_rr_type, vtr::Matrix<size_t>>& cb_instance_ids,
|
||||
const vtr::Matrix<size_t>& grid_instance_ids, const ClockNetwork& clk_ntwk,
|
||||
const RRClockSpatialLookup& rr_clock_lookup,
|
||||
const bool& perimeter_cb) {
|
||||
const RRClockSpatialLookup& rr_clock_lookup, const bool& perimeter_cb) {
|
||||
int status = CMD_EXEC_SUCCESS;
|
||||
|
||||
/* Add the global ports which are NOT yet added to the top-level module
|
||||
|
|
|
@ -42,8 +42,7 @@ int add_top_module_global_ports_from_grid_modules(
|
|||
const DeviceRRGSB& device_rr_gsb,
|
||||
const std::map<t_rr_type, vtr::Matrix<size_t>>& cb_instance_ids,
|
||||
const vtr::Matrix<size_t>& grid_instance_ids, const ClockNetwork& clk_ntwk,
|
||||
const RRClockSpatialLookup& rr_clock_lookup,
|
||||
const bool& perimeter_cb);
|
||||
const RRClockSpatialLookup& rr_clock_lookup, const bool& perimeter_cb);
|
||||
|
||||
void add_top_module_nets_prog_clock(ModuleManager& module_manager,
|
||||
const ModuleId& top_module,
|
||||
|
|
Loading…
Reference in New Issue