wrote instruction logic, just need a new assembler now :)
This commit is contained in:
@@ -20,3 +20,13 @@ serde = { version = "1.0.228", features = ["derive"] }
|
||||
[[bench]]
|
||||
name = "bench_mainstore"
|
||||
harness = false
|
||||
|
||||
[features]
|
||||
default = ["mainstore-bulkalloc", "mainstore-arraymap"]
|
||||
|
||||
# Memory Bank Features
|
||||
mainstore-bulkalloc = [] # Fastest for Writes
|
||||
mainstore-prealloc = [] # Fastest for Reads
|
||||
mainstore-stackarray = [] # Slightly outperforms ArrayMap but requires a large stack
|
||||
mainstore-arraymap = [] # Simple implementation
|
||||
mainstore-hashmap = [] # Old implementation, no raw pointers. Uses a hashmap
|
||||
|
||||
Reference in New Issue
Block a user