Update README to remove optimizations section

This commit is contained in:
Gabriel Tofvesson 2020-03-13 14:26:32 +01:00
parent da1ea8895d
commit 7b55d6e67a

View File

@ -45,7 +45,8 @@ the aforementioned specifications.
## Optimization ## Optimization
An optimization directive has been included in `board.c` to allow for the near An optimization directive has been included in `board.c` to allow for the near
complete removal of boundary checks and error conditions. To enable this complete removal of boundary checks and error conditions. To enable this
optimization, simply add `-DOPTIMIZE` to your compiler flags. optimization, simply add `-DOPTIMIZE` to your compiler flags. For insane speeds,
don't forget the `-O3` gcc flag.
## Live status output ## Live status output
If you would like to get a live status output of speculative value placement, If you would like to get a live status output of speculative value placement,
@ -56,14 +57,6 @@ are really only useful on much slower devices.
## TODO ## TODO
* Optimizations
* Packed structures
* Better structure layouts
* Optimize speculative value placement error-condition checks
* Cleaner code * Cleaner code
* Move printing to separate file * Move printing to separate file