2021-06-21 19:35:41 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
source openfpga.sh
|
|
|
|
PYTHON_EXEC=python3.8
|
|
|
|
###############################################
|
|
|
|
# OpenFPGA Shell with VPR8
|
|
|
|
##############################################
|
|
|
|
echo -e "Micro benchmark regression tests";
|
2022-05-22 00:15:39 -05:00
|
|
|
run-task benchmark_sweep/counter8 $@
|
|
|
|
run-task benchmark_sweep/counter8_full_testbench $@
|
|
|
|
run-task benchmark_sweep/counter128 $@
|
|
|
|
run-task benchmark_sweep/mac_units $@
|
2021-06-22 17:36:04 -05:00
|
|
|
|
|
|
|
# Verify MCNC big20 benchmark suite with ModelSim
|
|
|
|
# Please make sure you have ModelSim installed in the environment
|
|
|
|
# Otherwise, it will fail
|
2022-05-22 00:15:39 -05:00
|
|
|
run-task benchmark_sweep/mcnc_big20 $@
|
2021-06-22 17:36:04 -05:00
|
|
|
#python3 openfpga_flow/scripts/run_modelsim.py mcnc_big20 --run_sim
|
2021-06-30 17:18:09 -05:00
|
|
|
|
2022-05-22 00:15:39 -05:00
|
|
|
run-task benchmark_sweep/signal_gen $@
|