22 lines
683 B
Bash
Executable File
22 lines
683 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
source openfpga.sh
|
|
PYTHON_EXEC=python3.8
|
|
###############################################
|
|
# OpenFPGA Shell with VPR8
|
|
##############################################
|
|
echo -e "Micro benchmark regression tests";
|
|
run-task benchmark_sweep/counter8 $@
|
|
run-task benchmark_sweep/counter8_full_testbench $@
|
|
run-task benchmark_sweep/counter128 $@
|
|
run-task benchmark_sweep/mac_units $@
|
|
|
|
# Verify MCNC big20 benchmark suite with ModelSim
|
|
# Please make sure you have ModelSim installed in the environment
|
|
# Otherwise, it will fail
|
|
run-task benchmark_sweep/mcnc_big20 $@
|
|
#python3 openfpga_flow/scripts/run_modelsim.py mcnc_big20 --run_sim
|
|
|
|
run-task benchmark_sweep/signal_gen $@
|