Skip to content

Commit 1e7c90d

Browse files
committed
Fix compile error
1 parent a4a4a42 commit 1e7c90d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

vpr/src/pack/output_clustering.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,7 @@ void write_packing_results_to_xml(const bool& global_clocks,
661661
const std::string& architecture_id,
662662
const char* out_fname) {
663663
vtr::vector<ClusterBlockId, std::vector<t_intra_lb_net>*> intra_lb_routing_placeholder;
664-
std::unordered_set<AtomNetId> is_clock = alloc_and_load_is_clock(global_clocks);
664+
std::unordered_set<AtomNetId> is_clock = alloc_and_load_is_clock();
665665

666666
output_clustering(intra_lb_routing_placeholder,
667667
global_clocks,

vpr/src/pack/pack.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ bool try_pack(t_packer_opts* packer_opts,
1515

1616
float get_arch_switch_info(short switch_index, int switch_fanin, float& Tdel_switch, float& R_switch, float& Cout_switch);
1717

18-
std::unordered_set<AtomNetId> alloc_and_load_is_clock(bool global_clocks);
18+
std::unordered_set<AtomNetId> alloc_and_load_is_clock();
1919

2020
#endif

0 commit comments

Comments
 (0)