|
| 1 | +This archive contains VPR, an FPGA placement and routing tool, and VPack, |
| 2 | +a program to pack LUTs and flip flops into coarser grained logic blocks and |
| 3 | +convert a netlist from blif format to VPR's .net format. There is a detailed |
| 4 | +postscript manual covering everything from how to compile the programs |
| 5 | +to how to use them in manual422.ps |
| 6 | + |
| 7 | +To see VPR in action on the (small) sample circuit (e64 from the MCNC |
| 8 | +benchmark suite) and the sample FPGA architecture files type: |
| 9 | + |
| 10 | +cd vpr (if not already there) |
| 11 | +vpr e64-4x4lut.net 4x4lut_sanitized.arch e64.p e64.r -route_chan_width 40 -inner_num 3 |
| 12 | + |
| 13 | +The logic block for this architecture contains 4, 4-input look-up tables and |
| 14 | +4 flip flops along with local routing (a cluster-based logic block of size |
| 15 | +4). The routing wire segments all span 4 logic blocks in this architecture. |
| 16 | + |
| 17 | + |
| 18 | +I've also included a simpler architecture in which a logic block is only a |
| 19 | +4 LUT plus a flip flop, and in which all routing wires span only one logic |
| 20 | +block. To run this case, try: |
| 21 | + |
| 22 | +cd vpr (if not already there) |
| 23 | +vpr e64-4lut.net 4lut_sanitized.arch e64.p e64.r -route_chan_width 10 -inner_num 3 |
| 24 | + |
| 25 | + |
| 26 | +The two netlists (e64-4x4lut.net and e64-4lut.net) were created using VPack |
| 27 | +on a technology-mapped netlist in .blif format, with the appropriate options |
| 28 | +in each case: |
| 29 | + |
| 30 | +cd vpack (if not already there) |
| 31 | +vpack e64.blif e64-4x4lut.net -cluster_size 4 -inputs_per_cluster 10 |
| 32 | + |
| 33 | +and |
| 34 | + |
| 35 | +cd vpack (if not already there) |
| 36 | +vpack e64.blif e64-4lut.net -no_clustering |
| 37 | + |
| 38 | + |
| 39 | + |
| 40 | +There are a lot of different ways to use VPR and VPack -- see manual422.ps |
| 41 | +for details. |
| 42 | + |
| 43 | +-- Vaughn Betz, Jan. 26, 1999 |
| 44 | + |
| 45 | + |
| 46 | +============================================================================== |
| 47 | +Contents of the archive: |
| 48 | + |
| 49 | +manual422.ps: Postscript manual of VPR. |
| 50 | +README.422: This file. |
| 51 | + |
| 52 | +./vpr |
| 53 | + |
| 54 | + *.c, *.h: Source code for VPR. |
| 55 | + |
| 56 | + makefile: Makefile for VPR. Currently set for Solaris and gcc; you may |
| 57 | + have to modify the library paths and compiler options on your |
| 58 | + machine. |
| 59 | + |
| 60 | + descript.txt: A revision history of VPR. |
| 61 | + |
| 62 | + e64-4x4lut.net: A sample netlist file from the MCNC bencmark set. The logic |
| 63 | + block contains 4 4-input LUTs and 4 FFs. |
| 64 | + |
| 65 | + e64-4lut.net: A sample netlist file from the MCNC benchmark set. The logic |
| 66 | + block contains 1 4-LUT and 1 FF. |
| 67 | + |
| 68 | + 4x4lut_sanitized.arch: A sample FPGA architecture file, with a logic block |
| 69 | + containing 4 4-input LUTs and 4 FFs. |
| 70 | + |
| 71 | + 4lut_sanitized.arch: A sample FPGA architecture file, with a logic block |
| 72 | + containing 1 4-LUT and 1 FF. |
| 73 | + |
| 74 | + |
| 75 | +./vpack |
| 76 | + |
| 77 | + *.c, *.h: Source code for VPACK. |
| 78 | + |
| 79 | + makefile: Makefile for VPACK. May have to be modified for non Solaris |
| 80 | + machines or for compilers other than gcc. |
| 81 | + |
| 82 | + descript.txt: Revision history of VPACK. |
| 83 | + |
| 84 | + e64.blif: MCNC benchmark circuit e64 technology-mapped by Flowmap to |
| 85 | + 4-input LUTs. This is a combinational circuit. |
| 86 | + |
| 87 | + s1423.blif: A sequential MCNC benchmark circuit. It has been technology- |
| 88 | + mapped to 4-input LUTs and flip flops by Flowmap. |
| 89 | + |
| 90 | + |
| 91 | +============================================================================== |
| 92 | + |
| 93 | +Major changes from VPR Version 3.99 to this Version (4.22) |
| 94 | + |
| 95 | +1) A timing-driven router has been added to VPR, and is used by default. |
| 96 | + |
| 97 | +2) VPR now supports routing architectures with wires that span more than |
| 98 | + 1 logic block, and architectures that include both pass transistor and |
| 99 | + buffered routing switches. |
| 100 | + |
| 101 | +3) Delay extraction and timing analysis have been added to VPR, so it now |
| 102 | + outputs the speed of a placed and routed circuit. |
| 103 | + |
| 104 | +4) An area model has been incorporated, so it now estimates the area required |
| 105 | + to lay out an FPGA's routing. |
0 commit comments