2021-03-17 16:13:58 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
source openfpga.sh
|
|
|
|
PYTHON_EXEC=python3.8
|
|
|
|
###############################################
|
|
|
|
# OpenFPGA Shell with VPR8
|
|
|
|
##############################################
|
|
|
|
echo -e "VTR benchmark regression tests";
|
|
|
|
run-task benchmark_sweep/vtr_benchmarks --debug --show_thread_logs
|
2021-03-23 13:27:20 -05:00
|
|
|
# Run a quick but relaxed QoR check for heterogeneous blocks
|
|
|
|
python3 openfpga_flow/scripts/check_qor.py --reference_csv_file openfpga_flow/tasks/benchmark_sweep/vtr_benchmarks/config/vtr_benchmark_golden_results.csv --check_csv_file openfpga_flow/tasks/benchmark_sweep/vtr_benchmarks/latest/task_result.csv --metric_checklist_csv_file openfpga_flow/tasks/benchmark_sweep/vtr_benchmarks/config/metric_checklist.csv --check_tolerance 0.2,100
|