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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Changed
Changed OperatorDict arguments format.
Huge performance improvement by upgrading clvm to v1.0.7.
Greatly reduced max stack memory consumed
by merged tokenize_cons into tokenize_sexp. (Converted recursive function calls into loop)
by fully flatten assemble_from_ir which dispatched recursive function call and consumed a lot of stack memory.
Before this update, executing ir_read on deeply nested S-exp(s.t. over 1500 depth) failed due to Maximum call stack size exceeded error.
Changed the time unit(ms->sec) of output with --time option, to be compatible with Python's clvm_tools.
Use CLVMType instead of CLVMObject as a valid type representation of CLVMObject.
(CLVMObject should not be used as a type because there might be number of type incompatibility due to new private field)
Added
Added benchmark scripts.
Added webpack config to build js file for browser.
Added clvm_tools.go(...args) function to dispatch cli commands from javascript.
Added --experiment-backend rust option to use clvm_rs.