-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Various variants of "simplified/dummy" executors (#15152)
## Description Adding all these executor configurations, for understanding upper bounds on different approaches/optimizations: ``` /// Transaction execution: AptosVM /// Executing conflicts: in the input order, via BlockSTM, /// State: BlockSTM-provided MVHashMap-based view with caching AptosVMWithBlockSTM, /// Transaction execution: NativeVM - a simplified rust implemtation to create VMChangeSet, /// Executing conflicts: in the input order, via BlockSTM /// State: BlockSTM-provided MVHashMap-based view with caching NativeVMWithBlockSTM, /// Transaction execution: AptosVM /// Executing conflicts: All transactions execute on the state at the beginning of the block /// State: Raw CachedStateView AptosVMParallelUncoordinated, /// Transaction execution: Native rust code producing WriteSet /// Executing conflicts: All transactions execute on the state at the beginning of the block /// State: Raw CachedStateView NativeParallelUncoordinated, /// Transaction execution: Native rust code updating in-memory state, no WriteSet output /// Executing conflicts: All transactions execute on the state in the first come - first serve basis /// State: In-memory DashMap with rust values of state (i.e. StateKey -> Resource (either Account or FungibleStore)), /// cached across blocks, filled upon first request NativeValueCacheParallelUncoordinated, /// Transaction execution: Native rust code updating in-memory state, no WriteSet output /// Executing conflicts: All transactions execute on the state in the first come - first serve basis /// State: In-memory DashMap with AccountAddress to seq_num and balance (ignoring all other fields). /// kept across blocks, randomly initialized on first access, storage ignored. NativeNoStorageParallelUncoordinated, ```
- Loading branch information
1 parent
32e222b
commit 516f32e
Showing
26 changed files
with
3,046 additions
and
696 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.