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";
|
2021-06-22 17:36:04 -05:00
|
|
|
run-task benchmark_sweep/counter --debug --show_thread_logs
|
2021-06-21 19:35:41 -05:00
|
|
|
run-task benchmark_sweep/mac_units --debug --show_thread_logs
|
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
|
|
|
|
run-task benchmark_sweep/mcnc_big20 --debug --show_thread_logs
|
|
|
|
#python3 openfpga_flow/scripts/run_modelsim.py mcnc_big20 --run_sim
|