mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-23 21:14:37 +00:00
Python script to generate coverpoints for the IBM FP Dataset
This commit is contained in:
parent
0887e90367
commit
9aebc1526e
12
tests/fp/quad/fpdatasetgen.py
Normal file
12
tests/fp/quad/fpdatasetgen.py
Normal file
@ -0,0 +1,12 @@
|
||||
from fp_dataset import *
|
||||
#coverpoints=ibm_b1(128, 128, 'fadd.q', 2) #ibm_b1(flen, iflen, opcode, ops)
|
||||
#coverpoints=ibm_b2(128,128,'fadd.q',2) #ibm_b2(flen, iflen, opcode, ops, int_val = 100, seed = -1)
|
||||
coverpoints=ibm_b2(32,32,'fadd.s',2) #ibm_b2(flen, iflen, opcode, ops,seed = -1)
|
||||
#print(coverpoints)
|
||||
#quad_precision_hex = "0x3ff00000000000000000000000000001" # Example quad precision hexadecimal value
|
||||
#quad_precision_dec = fields_dec_converter(128, quad_precision_hex)
|
||||
#print(quad_precision_dec)
|
||||
for cvpts in coverpoints:
|
||||
print(cvpts)
|
||||
print("\n")
|
||||
print(len(coverpoints))
|
Loading…
Reference in New Issue
Block a user