2020-11-24 10:58:23 -06:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
2021-01-26 17:40:45 -06:00
|
|
|
source openfpga.sh
|
|
|
|
PYTHON_EXEC=python3.8
|
2020-11-24 10:58:23 -06:00
|
|
|
###############################################
|
|
|
|
# OpenFPGA Shell with VPR8
|
|
|
|
##############################################
|
|
|
|
echo -e "FPGA-Verilog Feature Tests";
|
|
|
|
|
|
|
|
echo -e "Testing Verilog generation for LUTs: a single mode LUT6 FPGA using micro benchmarks";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/lut_design/single_mode --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation for LUTs: simple fracturable LUT4 ";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/lut_design/frac_lut4 --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
2021-02-09 22:15:21 -06:00
|
|
|
echo -e "Testing Verilog generation for LUTs: fracturable LUT4 with embedded carry logic";
|
|
|
|
run-task fpga_verilog/lut_design/frac_lut4_arith --debug --show_thread_logs
|
|
|
|
|
2020-11-26 00:02:18 -06:00
|
|
|
echo -e "Testing Verilog generation for LUTs: native fracturable LUT4 ";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/lut_design/frac_native_lut4 --debug --show_thread_logs
|
2020-11-26 00:02:18 -06:00
|
|
|
|
2020-11-24 10:58:23 -06:00
|
|
|
echo -e "Testing Verilog generation for LUTs: simple fracturable LUT4 using AND gate to switch modes";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/lut_design/frac_lut4_and_switch --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation for LUTs: simple fracturable LUT6 ";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/lut_design/frac_lut6 --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation for LUTs: LUT6 with intermediate buffers";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/lut_design/intermediate_buffer --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation with VPR's untileable routing architecture ";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/untileable --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation with hard adder chain in CLBs ";
|
2021-02-01 12:16:12 -06:00
|
|
|
run-task fpga_verilog/adder/hard_adder --debug --show_thread_logs
|
|
|
|
|
|
|
|
echo -e "Testing Verilog generation with soft adder chain in CLBs ";
|
|
|
|
run-task fpga_verilog/adder/soft_adder --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation with 16k block RAMs ";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/bram/dpram16k --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation with 16k block RAMs spanning two columns ";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/bram/wide_dpram16k --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
2021-03-23 16:36:28 -05:00
|
|
|
echo -e "Testing Verilog generation with heterogeneous fabric using 8-bit single-mode multipliers ";
|
|
|
|
run-task fpga_verilog/dsp/single_mode_mult_8x8 --debug --show_thread_logs
|
|
|
|
|
2021-04-24 16:55:05 -05:00
|
|
|
echo -e "Testing Verilog generation with heterogeneous fabric using 16-bit multi-mode multipliers ";
|
|
|
|
run-task fpga_verilog/dsp/multi_mode_mult_16x16 --debug --show_thread_logs
|
|
|
|
|
2021-04-26 17:29:54 -05:00
|
|
|
echo -e "Testing Verilog generation with heterogeneous fabric using multi-width 16-bit multi-mode multipliers ";
|
|
|
|
run-task fpga_verilog/dsp/wide_multi_mode_mult_16x16 --debug --show_thread_logs
|
|
|
|
|
2020-11-24 10:58:23 -06:00
|
|
|
echo -e "Testing Verilog generation with different I/O capacities on each side of an FPGA ";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/io/multi_io_capacity --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation with I/Os only on left and right sides of an FPGA ";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/io/reduced_io --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation with embedded I/Os for an FPGA ";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/io/embedded_io --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation with SoC I/Os for an FPGA ";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/io/soc_io --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
2021-01-10 12:53:49 -06:00
|
|
|
echo -e "Testing Verilog generation with registerable I/Os for an FPGA ";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/io/registerable_io --debug --show_thread_logs
|
2021-01-10 12:53:49 -06:00
|
|
|
|
2020-11-24 10:58:23 -06:00
|
|
|
echo -e "Testing Verilog generation with adder chain across an FPGA";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/fabric_chain/adder_chain --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation with shift register chain across an FPGA";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/fabric_chain/register_chain --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation with scan chain across an FPGA";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/fabric_chain/scan_chain --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation with routing multiplexers implemented by tree structure";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/mux_design/tree_structure --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation with routing multiplexers implemented by standard cell MUX2";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/mux_design/stdcell_mux2 --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation with routing multiplexers implemented by local encoders";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/mux_design/local_encoder --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation with routing multiplexers without buffers";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/mux_design/debuf_mux --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation with routing multiplexers with input buffers only";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/mux_design/inbuf_only_mux --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation with routing multiplexers with output buffers only";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/mux_design/outbuf_only_mux --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation with routing multiplexers with constant gnd input";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/mux_design/const_input_gnd --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation with routing multiplexers without constant inputs";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/mux_design/no_const_input --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation with behavioral description";
|
2021-02-28 13:24:36 -06:00
|
|
|
run-task fpga_verilog/verilog_netlist_formats/behavioral_verilog --debug --show_thread_logs
|
2021-02-28 17:18:46 -06:00
|
|
|
run-task fpga_verilog/verilog_netlist_formats/behavioral_verilog_default_nettype_wire --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
2021-02-17 17:13:15 -06:00
|
|
|
echo -e "Testing synthesizable Verilog generation with external standard cells";
|
2021-02-28 13:24:36 -06:00
|
|
|
run-task fpga_verilog/verilog_netlist_formats/synthesizable_verilog --debug --show_thread_logs
|
2021-02-17 17:13:15 -06:00
|
|
|
|
2020-11-24 10:58:23 -06:00
|
|
|
echo -e "Testing implicit Verilog generation";
|
2021-02-28 13:24:36 -06:00
|
|
|
run-task fpga_verilog/verilog_netlist_formats/implicit_verilog --debug --show_thread_logs
|
2021-02-28 17:18:46 -06:00
|
|
|
run-task fpga_verilog/verilog_netlist_formats/implicit_verilog_default_nettype_wire --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
2021-02-28 17:18:46 -06:00
|
|
|
echo -e "Testing explicit Verilog generation";
|
2021-02-28 13:33:48 -06:00
|
|
|
run-task fpga_verilog/verilog_netlist_formats/explicit_port_mapping_default_nettype_wire --debug --show_thread_logs
|
|
|
|
|
2020-11-24 10:58:23 -06:00
|
|
|
echo -e "Testing Verilog generation with flatten routing modules";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/flatten_routing --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation with duplicated grid output pins";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/duplicated_grid_pin --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Verilog generation with spy output pads";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/spypad --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Power-gating designs";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/power_gated_design/power_gated_inverter --show_thread_logs --debug
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Depopulated crossbar in local routing";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/depopulate_crossbar --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing Fully connected output crossbar in local routing";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/fully_connected_output_crossbar --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
|
|
|
echo -e "Testing through channels in tileable routing";
|
2021-01-26 17:40:45 -06:00
|
|
|
run-task fpga_verilog/thru_channel/thru_narrow_tile --debug --show_thread_logs
|
|
|
|
run-task fpga_verilog/thru_channel/thru_wide_tile --debug --show_thread_logs
|
2020-11-24 10:58:23 -06:00
|
|
|
|
2021-01-26 17:40:45 -06:00
|
|
|
# Verify MCNC big20 benchmark suite with ModelSim
|
2020-11-24 10:58:23 -06:00
|
|
|
# Please make sure you have ModelSim installed in the environment
|
|
|
|
# Otherwise, it will fail
|
2021-01-26 17:40:45 -06:00
|
|
|
#run-task fpga_verilog/mcnc_big20 --debug --show_thread_logs --maxthreads 20
|
|
|
|
#python3 openfpga_flow/scripts/run_modelsim.py mcnc_big20 --run_sim
|