⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 place_and_route.h

📁 用于学术研究的FPGA布局布线软件VPR
💻 H
字号:
#define INFINITE -1#define NOT_FOUND 0#define WNEED 1#define WL 2#define PROC_TIME 3typedef struct s_fmap_cell{    int fs;			/* at this fs */    int fc;			/* at this fc */    int wneed;			/* need wneed to route */    int wirelength;		/* corresponding wirelength of successful routing at wneed */    int proc_time;    struct s_fmap_cell *next;}t_fmap_cell;void place_and_route(enum e_operation operation,		     struct s_placer_opts placer_opts,		     char *place_file,		     char *net_file,		     char *arch_file,		     char *route_file,		     struct s_annealing_sched annealing_sched,		     struct s_router_opts router_opts,		     struct s_det_routing_arch det_routing_arch,		     t_segment_inf * segment_inf,		     t_timing_inf timing_inf,		     t_subblock_data * subblock_data_ptr,		     t_chan_width_dist chan_width_dist);void init_chan(int cfactor,	       t_chan_width_dist chan_width_dist);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -