Skip to content

Commit c08e8cf

Browse files
fix compilation errors
1 parent 6488a35 commit c08e8cf

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

utils/route_diag/src/main.cpp

+1-7
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,10 @@
99
// Tool can either perform one route between a source (--source_rr_node) and
1010
// a sink (--sink_rr_node), or profile a source to all tiles (set
1111
// --source_rr_node and "--profile_source true").
12-
#include <cstdio>
13-
#include <cstring>
14-
#include <ctime>
12+
1513
#include <fstream>
1614

1715
#include "vtr_error.h"
18-
#include "vtr_memory.h"
1916
#include "vtr_log.h"
2017
#include "vtr_time.h"
2118

@@ -28,15 +25,12 @@
2825
#include "globals.h"
2926

3027
#include "net_delay.h"
31-
#include "RoutingDelayCalculator.h"
3228
#include "place_and_route.h"
3329
#include "router_delay_profiling.h"
3430
#include "route_tree.h"
3531
#include "route_common.h"
3632
#include "route_net.h"
37-
#include "route_export.h"
3833
#include "rr_graph.h"
39-
#include "rr_graph2.h"
4034
#include "compute_delta_delays_utils.h"
4135

4236
struct t_route_util_options {

vpr/test/test_connection_router.cpp

+1-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
#include "globals.h"
99
#include "net_delay.h"
1010
#include "place_and_route.h"
11-
#include "timing_place_lookup.h"
1211

1312
static constexpr const char kArchFile[] = "../../vtr_flow/arch/timing/k6_frac_N10_mem32K_40nm.xml";
1413
static constexpr int kMaxHops = 10;
@@ -188,8 +187,7 @@ TEST_CASE("connection_router", "[vpr]") {
188187

189188
// Clean up
190189
free_routing_structs();
191-
vpr_free_all(arch,
192-
vpr_setup);
190+
vpr_free_all(arch, vpr_setup);
193191
}
194192

195193
} // namespace

vpr/test/test_post_verilog.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include "catch2/catch_test_macros.hpp"
22

33
#include "vpr_api.h"
4-
#include "timing_place_lookup.h"
4+
#include "router_delay_profiling.h"
55

66
#include <fstream>
77
#include <memory>

0 commit comments

Comments
 (0)