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
{{ message }}
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
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 generate like rs0_nan_prefix == 0x such as fcvt.h.d
will it is a bug? or fcvt.h.d no need to generate prefix
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In isac, the code for generating sanitise is as follows
when flen < iflen,it will generate like
rs0_nan_prefix == 0x
such asfcvt.h.d
will it is a bug? or
fcvt.h.d
no need to generate prefixThe text was updated successfully, but these errors were encountered: