You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In isac, the code for generating sanitise is as follows
sanitise_cvpt = lambda rm,x,iflen,flen,c,inxFlg: x + ' fcsr == '+hex(rm<<5) + ' and rm_val == 7 ' \
+ ('' if iflen == flen or inxFlg else ''.join([' and rs'+str(x)+'_nan_prefix == 0x' \
+ 'f'*int((flen-iflen)/4) for x in range(1,c+1)]))
sanitise_norm = lambda rm,x,iflen,flen,c,inxFlg: x + ' fcsr == 0'\
+ ('' if iflen == flen or inxFlg else ''.join([' and rs'+str(x)+'_nan_prefix == 0x' \
+ 'f'*int((flen-iflen)/4) for x in range(1,c+1)]))
when flen < iflen,it will generating Strings like rs0_nan_prefix == 0x it will cause ctg to report an error when generating test cases
The text was updated successfully, but these errors were encountered:
In isac, the code for generating sanitise is as follows
when
flen
<iflen
,it will generating Strings likers0_nan_prefix == 0x
it will cause ctg to report an error when generating test casesThe text was updated successfully, but these errors were encountered: