From 760b5a0ece92bf7efc11af04b7fb7e6dc2fcae37 Mon Sep 17 00:00:00 2001 From: amin1377 Date: Wed, 3 Apr 2024 09:22:33 -0400 Subject: [PATCH] vpr: place: add chanz_place_cost_fac which will be used by net_cost function to consider the height of the cube bounding box --- vpr/src/place/place.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/vpr/src/place/place.cpp b/vpr/src/place/place.cpp index 059528c6415..03c527df13e 100644 --- a/vpr/src/place/place.cpp +++ b/vpr/src/place/place.cpp @@ -146,6 +146,7 @@ static vtr::vector bb_updated_before; */ static vtr::NdMatrix chanx_place_cost_fac({0, 0}); //[0...device_ctx.grid.width()-2] static vtr::NdMatrix chany_place_cost_fac({0, 0}); //[0...device_ctx.grid.height()-2] +static vtr::NdMatrix chanz_place_cost_fac({0, 0, 0, 0, 0, 0}); //[0...device_ctx.grid.height()-2] /* The following arrays are used by the try_swap function for speed. */ /* [0...cluster_ctx.clb_nlist.nets().size()-1] */