mv jit_bayes => compute_constrained_bayes

This commit is contained in:
NunoSempere 2023-05-24 16:58:38 -07:00
parent 90739ce4a8
commit 73372ad2ab
3 changed files with 13 additions and 8 deletions

View File

@ -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 ""

View File

@ -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