Skip to content

Commit 3fc7d8a

Browse files
[Logging][Warnings] Fixed NoCapNP Missing args
1 parent 395b21d commit 3fc7d8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vpr/src/route/router_lookahead/router_lookahead_extended_map.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -602,9 +602,9 @@ void ExtendedMapLookahead::read(const std::string& file) {
602602
#ifndef VTR_ENABLE_CAPNPROTO
603603
cost_map_.read(file);
604604

605-
this->src_opin_delays = util::compute_router_src_opin_lookahead(is_flat_);
605+
this->src_opin_delays = util::compute_router_src_opin_lookahead(is_flat_, route_verbosity_);
606606

607-
this->chan_ipins_delays = util::compute_router_chan_ipin_lookahead();
607+
this->chan_ipins_delays = util::compute_router_chan_ipin_lookahead(route_verbosity_);
608608
#else // VTR_ENABLE_CAPNPROTO
609609
(void)file;
610610
VPR_THROW(VPR_ERROR_ROUTE, "MapLookahead::read not implemented");

0 commit comments

Comments
 (0)