+ Microarchitecture optimizations + 64-bit support + Xilinx FPGA support + LLVM-16 support + Refactoring and quality control fixes minor update minor update minor update minor update minor update minor update cleanup cleanup cache bindings and memory perf refactory minor update minor update hw unit tests fixes minor update minor update minor update minor update minor update minor udpate minor update minor update minor update minor update minor update minor update minor update minor updates minor updates minor update minor update minor update minor update minor update minor update minor updates minor updates minor updates minor updates minor update minor update
17 lines
373 B
Bash
Executable File
17 lines
373 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Timing Analysis
|
|
# first argument is the project name
|
|
|
|
SCRIPT_DIR="$(dirname "${BASH_SOURCE[0]}")"
|
|
SCRIPT_DIR="$(realpath "${SCRIPT_DIR}")"
|
|
|
|
PROJECT_DIR=$1
|
|
PROJECT=$2
|
|
MODE=${3-fit}
|
|
|
|
echo "Running quartus_sh -t $SCRIPT_DIR/report_area.tcl $PROJECT $MODE in $PROJECT_DIR ..."
|
|
|
|
pushd $PROJECT_DIR
|
|
quartus_sta -t $SCRIPT_DIR/analyze_timing.tcl $PROJECT $MODE
|
|
popd |