aboutsummaryrefslogtreecommitdiffstats
path: root/forth/fib.fth
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-11-09 14:48:49 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-11-09 14:48:49 -0500
commit4b50a9fafe793abf3c2c16e203072a98a0702814 (patch)
tree52283545e15153a2adeba8145d8e018f97699cfe /forth/fib.fth
parent3dc947a7575bd23703644996d8e853e5e618b2e3 (diff)
move main execution to State; bring back verify()optimize
Diffstat (limited to 'forth/fib.fth')
-rw-r--r--forth/fib.fth4
1 files changed, 2 insertions, 2 deletions
diff --git a/forth/fib.fth b/forth/fib.fth
index 671528a..3efdd2c 100644
--- a/forth/fib.fth
+++ b/forth/fib.fth
@@ -9,10 +9,10 @@
5 sys fib 5 sys >r 2drop r> ;
variable avg 0 avg !
-2000 constant iters
+1000 constant iters
: bench ( -- )
- iters 0 do 100 fibbench avg +! loop
+ iters 0 do 1000 fibbench avg +! loop
avg @ iters / avg ! ;
bench ." avg time: " avg @ . ." us" cr