mirror of
https://github.com/ehw-fit/ariths-gen.git
synced 2025-04-04 06:11:41 +01:00
82 lines
2.3 KiB
Bash
82 lines
2.3 KiB
Bash
#!/usr/bin/bash
|
|
|
|
valid=1
|
|
|
|
test_circuit () {
|
|
local type=$1
|
|
local circuit=$2
|
|
|
|
|
|
|
|
for mode in "flat" "hier"; do
|
|
echo -e "===== Testing verilog \e[33m$circuit\e[0m ($mode) ======"
|
|
|
|
g++ -std=c++11 -pedantic -g -std=c++11 -pedantic -DCNAME="$circuit" $type.c ../test_circuits/c_circuits/$mode/$circuit.c -o tmp.exe
|
|
|
|
|
|
if iverilog -o tmp.verilog -Ddut=$circuit ../test_circuits/verilog_circuits/$mode/$circuit.v tb_$type.v ; then
|
|
tv=`vvp tmp.verilog`
|
|
if [[ $tv ]]; then
|
|
echo -e "[\e[31mfail\e[0m]"
|
|
echo -e $tv
|
|
valid=0
|
|
else
|
|
echo -e "[\e[32mok\e[0m]"
|
|
fi
|
|
else
|
|
echo -e "[\e[31mfailed synthesis\e[0m]"
|
|
valid=0
|
|
fi
|
|
|
|
# if ./tmp.exe ; then
|
|
# echo -e "[\e[32mok\e[0m]"
|
|
# else
|
|
# echo -e "[\e[31mfail\e[0m]"
|
|
# valid=0
|
|
# fi
|
|
done
|
|
}
|
|
|
|
|
|
|
|
test_circuit "adder_signed" "s_rca8"
|
|
test_circuit "adder_signed" "s_pg_rca8"
|
|
test_circuit "adder_signed" "s_cska8"
|
|
test_circuit "adder_signed" "s_cla8"
|
|
|
|
test_circuit "adder_unsigned" "u_rca8"
|
|
test_circuit "adder_unsigned" "u_pg_rca8"
|
|
test_circuit "adder_unsigned" "u_cska8"
|
|
test_circuit "adder_unsigned" "u_cla8"
|
|
|
|
|
|
test_circuit "multiplier_signed" "s_arrmul8"
|
|
test_circuit "multiplier_signed" "s_wallace_cla8"
|
|
test_circuit "multiplier_signed" "s_wallace_rca8"
|
|
test_circuit "multiplier_signed" "s_wallace_pg_rca8"
|
|
test_circuit "multiplier_signed" "s_wallace_cska8"
|
|
test_circuit "multiplier_signed" "s_dadda_cla8"
|
|
test_circuit "multiplier_signed" "s_dadda_rca8"
|
|
test_circuit "multiplier_signed" "s_dadda_pg_rca8"
|
|
test_circuit "multiplier_signed" "s_dadda_cska8"
|
|
|
|
|
|
test_circuit "multiplier_unsigned" "u_arrmul8"
|
|
test_circuit "multiplier_unsigned" "u_wallace_cla8"
|
|
test_circuit "multiplier_unsigned" "u_wallace_rca8"
|
|
test_circuit "multiplier_unsigned" "u_wallace_pg_rca8"
|
|
test_circuit "multiplier_unsigned" "u_wallace_cska8"
|
|
test_circuit "multiplier_unsigned" "u_dadda_cla8"
|
|
test_circuit "multiplier_unsigned" "u_dadda_rca8"
|
|
test_circuit "multiplier_unsigned" "u_dadda_pg_rca8"
|
|
test_circuit "multiplier_unsigned" "u_dadda_cska8"
|
|
|
|
|
|
|
|
if [ "$valid" -eq 1 ]; then
|
|
echo "all tests passed"
|
|
exit 0
|
|
else
|
|
echo "some of tests failed"
|
|
exit 1
|
|
fi |