Skip to content

Commit d11d081

Browse files
committed
updaet
1 parent 60f0be7 commit d11d081

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

Makefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
ifndef JULIAHOME
2-
$(error JULIAHOME not defined. Set value to the root of the Julia source tree.)
3-
endif
41
ifndef DSFMTDIR
52
$(error DSFMTDIR not defined. Set value to the root of the dSFMT source tree.)
63
endif
@@ -84,7 +81,7 @@ benchmarks/go.csv: perf.go
8481
@for t in $(ITERATIONS); do go run $<; done >$@
8582

8683
benchmarks/julia.csv: perf.jl
87-
@for t in $(ITERATIONS); do $(JULIAHOME)/usr/bin/julia $<; done >$@
84+
@for t in $(ITERATIONS); do julia $<; done >$@
8885

8986
benchmarks/python.csv: perf.py
9087
@for t in $(ITERATIONS); do $(PYTHON) $<; done >$@

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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

1513
To build binaries and run the benchmarks, simply run `make`.
1614
Note that this refers to GNU Make, so BSD users will need to run `gmake`.

bin/versions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ fi
3434

3535
if [[ $LANGUAGES == *":julia:"* ]]; then
3636
echo -n "julia,"
37-
$JULIAHOME/usr/bin/julia -v | cut -f3 -d" "
37+
julia -v | cut -f3 -d" "
3838
fi
3939

4040
if [[ $LANGUAGES == *":lua:"* ]]; then

0 commit comments

Comments
 (0)