Skip to content

Commit

Permalink
More accurate numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
diondokter committed Feb 6, 2024
1 parent dc94a8d commit a319eb5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ Instead, we can optionally store some state in ram.

These numbers are taken from the test cases in the cache module:

| Name | RAM bytes | Map # flash reads | Map flash bytes read | Queue # flash reads | Queue flash bytes read |
| ---------------: | -------------: | ----------------: | -------------------: | ------------------: | ---------------------: |
| NoCache | 0 | 100% | 100% | 100% | 100% |
| PageStateCache | 2 * num pages | 77% | 97% | 51% | 90% |
| PagePointerCache | 10 * num pages | 69% | 89% | 35% | 61% |
| Name | RAM bytes | Map # flash reads | Map flash bytes read | Queue # flash reads | Queue flash bytes read |
| ---------------: | ------------: | ----------------: | -------------------: | ------------------: | ---------------------: |
| NoCache | 0 | 100% | 100% | 100% | 100% |
| PageStateCache | 1 * num pages | 77% | 97% | 51% | 90% |
| PagePointerCache | 9 * num pages | 69% | 89% | 35% | 61% |

#### Takeaways

Expand Down

0 comments on commit a319eb5

Please sign in to comment.