OpenFPGA/openfpga_flow/vpr_arch
tangxifan ca1bafc688 [OpenFPGA Architecture] Add full pin equivalence to full output crossbar architecture 2020-09-16 19:26:12 -06:00
..
README.md update readme for vpr architecture naming 2020-08-17 13:54:26 -06:00
k4_N4_tileable_40nm.xml rename arch directory to be clear for its usage 2020-07-04 19:13:28 -06:00
k4_N4_tileable_full_output_crossbar_40nm.xml [OpenFPGA Architecture] Add full pin equivalence to full output crossbar architecture 2020-09-16 19:26:12 -06:00
k4_N4_tileable_no_local_routing_40nm.xml [Architecture] Bug fix in no local routing architecture 2020-09-16 18:07:52 -06:00
k6_N10_40nm.xml rename arch directory to be clear for its usage 2020-07-04 19:13:28 -06:00
k6_N10_tileable_40nm.xml rename arch directory to be clear for its usage 2020-07-04 19:13:28 -06:00
k6_frac_N8_tileable_40nm.xml use k6_n10 architecture to reduce CI runtime 2020-07-22 13:45:55 -06:00
k6_frac_N10_40nm.xml rename arch directory to be clear for its usage 2020-07-04 19:13:28 -06:00
k6_frac_N10_adder_chain_40nm.xml rename arch directory to be clear for its usage 2020-07-04 19:13:28 -06:00
k6_frac_N10_adder_chain_mem16K_40nm.xml rename arch directory to be clear for its usage 2020-07-04 19:13:28 -06:00
k6_frac_N10_tileable_40nm.xml rename arch directory to be clear for its usage 2020-07-04 19:13:28 -06:00
k6_frac_N10_tileable_adder_chain_40nm.xml rename arch directory to be clear for its usage 2020-07-04 19:13:28 -06:00
k6_frac_N10_tileable_adder_chain_frac_mem32K_frac_dsp36_40nm.xml bug fix in the flagship vpr arch 2020-08-19 15:23:20 -06:00
k6_frac_N10_tileable_adder_chain_mem16K_40nm.xml rename arch directory to be clear for its usage 2020-07-04 19:13:28 -06:00
k6_frac_N10_tileable_adder_chain_mem16K_aib_40nm.xml rename arch directory to be clear for its usage 2020-07-04 19:13:28 -06:00
k6_frac_N10_tileable_adder_chain_mem16K_multi_io_capacity_40nm.xml rename arch directory to be clear for its usage 2020-07-04 19:13:28 -06:00
k6_frac_N10_tileable_adder_chain_mem16K_reduced_io_40nm.xml rename arch directory to be clear for its usage 2020-07-04 19:13:28 -06:00
k6_frac_N10_tileable_adder_chain_wide_mem16K_40nm.xml [regression test] Add more tests for thru channels and deploy to CI 2020-08-19 20:11:37 -06:00
k6_frac_N10_tileable_adder_register_chain_40nm.xml rename arch directory to be clear for its usage 2020-07-04 19:13:28 -06:00
k6_frac_N10_tileable_adder_register_scan_chain_40nm.xml rename arch directory to be clear for its usage 2020-07-04 19:13:28 -06:00
k6_frac_N10_tileable_adder_register_scan_chain_depop50_40nm.xml add fixed layouts to a flagship architecture to test bitstream generation runtime 2020-07-28 11:51:50 -06:00
k6_frac_N10_tileable_adder_register_scan_chain_depop50_spypad_40nm.xml rename arch directory to be clear for its usage 2020-07-04 19:13:28 -06:00
k6_frac_N10_tileable_adder_register_scan_chain_mem16K_depop50_12nm.xml rename arch directory to be clear for its usage 2020-07-04 19:13:28 -06:00
k6_frac_N10_tileable_thru_channel_adder_chain_mem16K_40nm.xml update thru channel arch for avoid buggy pin locations 2020-08-19 19:52:35 -06:00
k6_frac_N10_tileable_thru_channel_adder_chain_wide_mem16K_40nm.xml [regression test] Add more tests for thru channels and deploy to CI 2020-08-19 20:11:37 -06:00

README.md

Naming convention for VPR architecture files

Please reveal the following architecture features in the names to help quickly spot architecture files.

  • k<lut_size>_: Look-Up Table (LUT) size of FPGA. If you have fracturable LUTs or multiple LUT circuits, this should be largest input size. The keyword 'frac' is to specify if fracturable LUT is used or not.
  • N<le_size>: Number of logic elements for a CLB. If you have multiple CLB architectures, this should be largest number.
  • tileable: If the routing architecture is tileable or not.
  • adder_chain: If hard adder/carry chain is used inside CLBs
  • register_chain: If shift register chain is used inside CLBs
  • scan_chain: If scan chain testing infrastructure is used inside CLBs
  • __mem<mem_size>: If block RAM (BRAM) is used or not. If used, the memory size should be clarified here. The keyword 'wide' is to specify if the BRAM spans more than 1 column. The keyword 'frac' is to specify if the BRAM is fracturable to operate in different modes.
  • __dsp<dsp_size>: If Digital Signal Processor (DSP) is used or not. If used, the input size should be clarified here. The keyword 'wide' is to specify if the DSP spans more than 1 column. The keyword 'frac' is to specify if the DSP is fracturable to operate in different modes.
  • aib: If the Advanced Interface Bus (AIB) is used in place of some I/Os.
  • multi_io_capacity: If I/O capacity is different on each side of FPGAs.
  • reduced_io: If I/Os only appear a certain or multiple sides of FPGAs
  • <feature_size>: The technology node which the delay numbers are extracted from.

Other features are used in naming should be listed here.