mv jit_bayes => compute_constrained_bayes
This commit is contained in:
parent
90739ce4a8
commit
73372ad2ab
Binary file not shown.
|
@ -162,6 +162,11 @@ proc jitBayesLoop(
|
|||
|
||||
echo ""
|
||||
|
||||
## Infrabayesianism. Part 1: Have hypotheses over just part of the world.
|
||||
|
||||
|
||||
## Infrabayesianism. Part 2: Take the infimum over the possible loss.
|
||||
|
||||
## Display outputs
|
||||
echo ""
|
||||
|
16
src/makefile
16
src/makefile
|
@ -1,16 +1,16 @@
|
|||
SHELL := /bin/bash ## <= required to use time
|
||||
VERBOSE=--verbosity:0
|
||||
|
||||
build: jit_bayes.nim
|
||||
nim c $(VERBOSE) jit_bayes.nim
|
||||
build: compute_constrained_bayes.nim
|
||||
nim c $(VERBOSE) compute_constrained_bayes.nim
|
||||
|
||||
run: jit_bayes
|
||||
./jit_bayes $(VERBOSE)
|
||||
run: compute_constrained_bayes
|
||||
./compute_constrained_bayes $(VERBOSE)
|
||||
|
||||
examine: jit_bayes
|
||||
nim c $(VERBOSE) jit_bayes.nim && time ./jit_bayes $(VERBOSE) && echo
|
||||
nim c $(VERBOSE) -d:release jit_bayes.nim && time ./jit_bayes $(VERBOSE) && echo
|
||||
nim c $(VERBOSE) -d:danger jit_bayes.nim && time ./jit_bayes $(VERBOSE)
|
||||
examine: compute_constrained_bayes
|
||||
nim c $(VERBOSE) compute_constrained_bayes.nim && time ./compute_constrained_bayes $(VERBOSE) && echo
|
||||
nim c $(VERBOSE) -d:release compute_constrained_bayes.nim && time ./compute_constrained_bayes $(VERBOSE) && echo
|
||||
nim c $(VERBOSE) -d:danger compute_constrained_bayes.nim && time ./compute_constrained_bayes $(VERBOSE)
|
||||
|
||||
time:
|
||||
time make && echo && time make run
|
||||
|
|
Loading…
Reference in New Issue
Block a user