Skip to content

Commit

Permalink
remove unused struct frp, timing_place_lookup.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
soheilshahrouz committed Nov 28, 2024
1 parent 2deff2b commit be8519b
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions vpr/src/place/timing_place_lookup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,22 +40,6 @@ constexpr float UNINITIALIZED_DELTA = -1; //Ind
constexpr float EMPTY_DELTA = -2; //Indicates delta delay from/to an EMPTY block
constexpr float IMPOSSIBLE_DELTA = std::numeric_limits<float>::infinity(); //Indicates there is no valid delta delay

struct t_profile_loc {
t_profile_loc(int x, int y, std::vector<vtr::Point<int>> delta_values)
: root(x, y)
, deltas(delta_values) {}

vtr::Point<int> root;
std::vector<vtr::Point<int>> deltas;
};

struct t_profile_info {
std::vector<t_profile_loc> locations;

int max_delta_x;
int max_delta_y;
};

/*** Function Prototypes *****/
static t_chan_width setup_chan_width(const t_router_opts& router_opts,
t_chan_width_dist chan_width_dist);
Expand Down

0 comments on commit be8519b

Please sign in to comment.