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
Today if signed ints are used in output statement, their unsigned versions are output.
For example,
def void main(){
int32_al x = -1;
output(SERVER, x);
}
The above function will print (1<<32)-1 and not -1.
Solution:
Fix ezpc.h so that output queue has output variable type in account.
The text was updated successfully, but these errors were encountered:
* Adding OnnxBridge and ezpc-cli from onnxbridge branch
* added code for image load, model weights load, with ip and party
* fixes
* minor fix
* output only to client
* function renamed bcuz of overloading
* final changes
* typo
* checkpoint Lenet working-> bug fixed
* script updated
* LLAMA compile script added
* LLAMA compile script update
* script working
* basic README added
* updated readme, need to still update about LLAMA prereq
* updated readme, need to still update about LLAMA prereq
* typo
* updated to automatically send zip file over http
* updates
* bugfix
---------
Co-authored-by: Kanav Gupta <[email protected]>
Co-authored-by: Kanav Gupta <[email protected]>
Today if signed ints are used in output statement, their unsigned versions are output.
For example,
def void main(){
int32_al x = -1;
output(SERVER, x);
}
The above function will print (1<<32)-1 and not -1.
Solution:
Fix ezpc.h so that output queue has output variable type in account.
The text was updated successfully, but these errors were encountered: