From 7b55d6e67a3deed584bfb034ffa9de60cb9e8359 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 13 Mar 2020 14:26:32 +0100 Subject: [PATCH] Update README to remove optimizations section --- README.md | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 5484516..47884e7 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,8 @@ the aforementioned specifications. ## Optimization 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 -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 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 -* Optimizations - - * Packed structures - - * Better structure layouts - - * Optimize speculative value placement error-condition checks - * Cleaner code * Move printing to separate file