mirror of
https://github.com/openhwgroup/cvw.git
synced 2025-04-25 06:17:10 -04:00
Update sim-testfloat to fix errors due to bad config element. I am not sure of the reasoning, but the specific path to the testvector was not getting inserted in Questa. This modification also adds features to test individualized tests (.e.g, binary16 only) -- documentation is added in the FPbuild.txt file
This commit is contained in:
parent
cde2b1f2d2
commit
66643eb78e
4 changed files with 1255 additions and 1251 deletions
|
@ -34,18 +34,14 @@ other FP tests given by the great SoftFloat/TestFloat output.
|
||||||
|
|
||||||
4a.) Each test will test all its vectors - if you want to test a
|
4a.) Each test will test all its vectors - if you want to test a
|
||||||
subset of the vectors (e.g., only binary16), you should modify the
|
subset of the vectors (e.g., only binary16), you should modify the
|
||||||
cvw/testbench/tests-fp.h and comment out the tests you do not want to
|
testfloat.do in the sim directory. Change the TEST_SIZE="all" to the
|
||||||
test. The best way to do this is to comment out each item out with
|
specific test you want to run. For example, if you want to run only
|
||||||
the // comment option in SV. For example,
|
binary16, you should set this variable to TEST_SIZE="HP".
|
||||||
|
|
||||||
string f128div[] = '{
|
|
||||||
// "f128_div_rne.tv",
|
|
||||||
// "f128_div_rz.tv",
|
|
||||||
// "f128_div_ru.tv",
|
|
||||||
// "f128_div_rd.tv",
|
|
||||||
// "f128_div_rnm.tv"
|
|
||||||
};
|
|
||||||
|
|
||||||
|
4b.) If you want to turn off the generation of wlf files while running
|
||||||
|
sim-testfloat-batch, you can modify testfloat.do in the sim
|
||||||
|
directory. Inside this DO file, modify the WAV file to 0 --> i.e.,
|
||||||
|
set "quietly set WAV 0;"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,3 @@
|
||||||
# sqrt - test square root
|
# sqrt - test square root
|
||||||
# all - test everything
|
# all - test everything
|
||||||
|
|
||||||
# nowave for 2nd argument supresses wlf files
|
|
||||||
|
|
||||||
vsim -c -do "do testfloat.do rv64fpquad $1 $2"
|
|
|
@ -27,12 +27,16 @@ vlib work
|
||||||
# $num = the added words after the call
|
# $num = the added words after the call
|
||||||
vlog +incdir+../config/$1 +incdir+../config/shared ../src/wally/cvw.sv ../testbench/testbench-fp.sv ../src/fpu/*.sv ../src/fpu/*/*.sv ../src/generic/*.sv ../src/generic/flop/*.sv -suppress 2583,7063,8607,2697
|
vlog +incdir+../config/$1 +incdir+../config/shared ../src/wally/cvw.sv ../testbench/testbench-fp.sv ../src/fpu/*.sv ../src/fpu/*/*.sv ../src/generic/*.sv ../src/generic/flop/*.sv -suppress 2583,7063,8607,2697
|
||||||
|
|
||||||
vsim -voptargs=+acc work.testbenchfp -G TEST=$2
|
# Change TEST_SIZE to only test certain FP width
|
||||||
|
# values are QP, DP, SP, HP
|
||||||
|
vsim -voptargs=+acc work.testbenchfp -GTEST=$2 -GTEST_SIZE="all"
|
||||||
|
|
||||||
# Determine if nowave argument is provided
|
# Set WAV variable to avoid having any output to wave (to limit disk space)
|
||||||
# this removes any output to a wlf or wave window to reduce
|
quietly set WAV 1;
|
||||||
# disk space.
|
|
||||||
if {($argc > 2) && ($3 eq "nowave")} {
|
# Determine if nowave argument is provided this removes any output to
|
||||||
|
# a wlf or wave window to reduce disk space.
|
||||||
|
if {$WAV eq 0} {
|
||||||
puts "No wave output is selected"
|
puts "No wave output is selected"
|
||||||
} else {
|
} else {
|
||||||
puts "wave output is selected"
|
puts "wave output is selected"
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue