xml_arch.h

来自「用于学术研究的FPGA布局布线软件VPR」· C头文件 代码 · 共 42 行

H
42
字号
/* type definitions */      struct s_clb_grid{    boolean IsAuto;    float Aspect;     int W;     int H; };typedef struct s_arch t_arch;struct s_arch{    t_chan_width_dist Chans;    int N;			/* Cluster size */     int K;			/* LUT size */     enum e_switch_block_type SBType;     float R_minW_nmos;     float R_minW_pmos;     int Fs;     float C_ipin_cblock;     float T_ipin_cblock;     float grid_logic_tile_area;     float ipin_mux_trans_size;     struct s_clb_grid clb_grid;     t_segment_inf * Segments;     int num_segments;     struct s_switch_inf *Switches;     int num_switches; };/* function declarations */ void XmlReadArch(IN const char *ArchFile,		 IN boolean timing_enabled,		 OUT struct s_arch *arch,		 OUT t_type_descriptor ** Types,		 OUT int *NumTypes);void EchoArch(IN const char *EchoFile,	       IN const t_type_descriptor * Types,	       IN int NumTypes);

⌨️ 快捷键说明

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