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 ""
|
echo ""
|
||||||
|
|
||||||
|
## Infrabayesianism. Part 1: Have hypotheses over just part of the world.
|
||||||
|
|
||||||
|
|
||||||
|
## Infrabayesianism. Part 2: Take the infimum over the possible loss.
|
||||||
|
|
||||||
## Display outputs
|
## Display outputs
|
||||||
echo ""
|
echo ""
|
||||||
|
|
16
src/makefile
16
src/makefile
|
@ -1,16 +1,16 @@
|
||||||
SHELL := /bin/bash ## <= required to use time
|
SHELL := /bin/bash ## <= required to use time
|
||||||
VERBOSE=--verbosity:0
|
VERBOSE=--verbosity:0
|
||||||
|
|
||||||
build: jit_bayes.nim
|
build: compute_constrained_bayes.nim
|
||||||
nim c $(VERBOSE) jit_bayes.nim
|
nim c $(VERBOSE) compute_constrained_bayes.nim
|
||||||
|
|
||||||
run: jit_bayes
|
run: compute_constrained_bayes
|
||||||
./jit_bayes $(VERBOSE)
|
./compute_constrained_bayes $(VERBOSE)
|
||||||
|
|
||||||
examine: jit_bayes
|
examine: compute_constrained_bayes
|
||||||
nim c $(VERBOSE) jit_bayes.nim && time ./jit_bayes $(VERBOSE) && echo
|
nim c $(VERBOSE) compute_constrained_bayes.nim && time ./compute_constrained_bayes $(VERBOSE) && echo
|
||||||
nim c $(VERBOSE) -d:release jit_bayes.nim && time ./jit_bayes $(VERBOSE) && echo
|
nim c $(VERBOSE) -d:release compute_constrained_bayes.nim && time ./compute_constrained_bayes $(VERBOSE) && echo
|
||||||
nim c $(VERBOSE) -d:danger jit_bayes.nim && time ./jit_bayes $(VERBOSE)
|
nim c $(VERBOSE) -d:danger compute_constrained_bayes.nim && time ./compute_constrained_bayes $(VERBOSE)
|
||||||
|
|
||||||
time:
|
time:
|
||||||
time make && echo && time make run
|
time make && echo && time make run
|
||||||
|
|
Loading…
Reference in New Issue
Block a user