From 748ce397a00a3a3933c00eed1568e265b0f17a7a Mon Sep 17 00:00:00 2001 From: soheilshahrouz Date: Tue, 27 Aug 2024 19:39:23 -0400 Subject: [PATCH] add the missing element to time_elapsed_ for noc biased centroid move --- vpr/src/place/simpleRL_move_generator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vpr/src/place/simpleRL_move_generator.h b/vpr/src/place/simpleRL_move_generator.h index 179c653f965..2951cb34e26 100644 --- a/vpr/src/place/simpleRL_move_generator.h +++ b/vpr/src/place/simpleRL_move_generator.h @@ -95,7 +95,7 @@ class KArmedBanditAgent { /* Ratios of the average runtime to calculate each move type */ /* These ratios are useful for different reward functions * * The vector is calculated by averaging many runs on different circuits */ - const vtr::vector time_elapsed_{1.0, 3.6, 5.4, 2.5, 2.1, 0.8, 2.2}; + const vtr::vector time_elapsed_{1.0, 3.6, 5.4, 2.5, 2.1, 0.8, 2.2, 5.4}; FILE* agent_info_file_ = nullptr;