File tree Expand file tree Collapse file tree 3 files changed +3
-8
lines changed
Expand file tree Collapse file tree 3 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 1- ifndef JULIAHOME
2- $(error JULIAHOME not defined. Set value to the root of the Julia source tree.)
3- endif
41ifndef DSFMTDIR
52$(error DSFMTDIR not defined. Set value to the root of the dSFMT source tree.)
63endif
@@ -84,7 +81,7 @@ benchmarks/go.csv: perf.go
8481 @for t in $(ITERATIONS ) ; do go run $< ; done > $@
8582
8683benchmarks/julia.csv : perf.jl
87- @for t in $(ITERATIONS ) ; do $( JULIAHOME ) /usr/bin/ julia $< ; done > $@
84+ @for t in $(ITERATIONS ) ; do julia $< ; done > $@
8885
8986benchmarks/python.csv : perf.py
9087 @for t in $(ITERATIONS ) ; do $(PYTHON ) $< ; done > $@
Original file line number Diff line number Diff line change @@ -8,9 +8,7 @@ The results of these benchmarks are used to generate the performance graph on th
88
99## Running benchmarks
1010
11- This repository assumes that Julia has been built from source and that there exists
12- an environment variable ` JULIAHOME ` that points to the root of the Julia source tree.
13- This can also be set when invoking ` make ` , e.g. ` make JULIAHOME=path/to/julia ` .
11+ Install Julia with ` juliaup ` .
1412
1513To build binaries and run the benchmarks, simply run ` make ` .
1614Note that this refers to GNU Make, so BSD users will need to run ` gmake ` .
Original file line number Diff line number Diff line change 3434
3535if [[ $LANGUAGES == * " :julia:" * ]]; then
3636 echo -n " julia,"
37- $JULIAHOME /usr/bin/ julia -v | cut -f3 -d" "
37+ julia -v | cut -f3 -d" "
3838fi
3939
4040if [[ $LANGUAGES == * " :lua:" * ]]; then
You can’t perform that action at this time.
0 commit comments