Skip to content
Snippets Groups Projects
Commit 52145009 authored by auphelia's avatar auphelia
Browse files

[Utils] Added additional arguments for unpack hexstring function to interpret...

[Utils] Added additional arguments for unpack hexstring function to interpret pyverilator outputs correctly
parent 042f41cf
No related branches found
No related tags found
No related merge requests found
......@@ -112,7 +112,7 @@ def pack_innermost_dim_as_hex_string(ndarray, dtype, pad_to_nbits):
def unpack_innermost_dim_from_hex_string(
data, shape, packedBits, targetBits, reverseInnerDim=False
data, dtype, shape, packedBits, targetBits, rtlsim=False
):
# function expects flattens array and returns an array in the desired shape
outer_dim_elems = 1
......@@ -138,9 +138,17 @@ def unpack_innermost_dim_from_hex_string(
elem_str = "".join(map(str, elem))
ar_list.append(int(elem_str, 2))
# reverse inner dimension back to "normal" positions
if reverseInnerDim is False:
if rtlsim is False:
ar_list.reverse()
ar_list = [int(x) for x in ar_list]
else:
# interpret output values correctly by flattening and adjusting the output
if dtype == DataType.BIPOLAR:
ar_list = [2 * x - 1 for x in ar_list]
# pyverilator interprets int2 as uint2, so output has to be corrected
elif dtype == DataType.INT2 or dtype == DataType.INT32:
mask = 2 ** (dtype.bitwidth() - 1)
ar_list = [-(x & mask) + (x & ~mask) for x in ar_list]
array.append(ar_list)
array = np.asarray(array, dtype=np.float32).reshape(shape)
return array
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment