Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

julia version 1.9.2 #75

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
12 changes: 6 additions & 6 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ jobs:
matrix:
os: [ubuntu-latest]
java-version: ['17']
julia-version: ['1.8.0']
python-version: ['3.10']
numpy-version: ['1.23.2']
julia-version: ['1.9.2']
python-version: ['3.11.4']
numpy-version: ['1.25']
gfortran-version: ['9'] # Note: unused since is built-in.
rust-version: ['1.42.0'] # Note: unused since controlled by `rust/rust-toolchain`
rust-version: ['1.70.0'] # Note: unused since controlled by `rust/rust-toolchain`
js-version: ['18']
r-version: ['4.2.1']
r-version: ['4.3.1']
lua-version: ['latest'] # Note: unused since lua distribution manually downloaded
go-version: ['1.19']
go-version: ['1.20.5']

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ endif
.ONESHELL:

include $(JULIAHOME)/Make.inc
include $(JULIAHOME)/deps/Versions.make
include $(JULIAHOME)/deps/*.version

NODEJSBIN = node

Expand Down Expand Up @@ -53,7 +53,7 @@ export OMP_NUM_THREADS=1
export GOTO_NUM_THREADS=1
export OPENBLAS_NUM_THREADS=1

perf.h: $(JULIAHOME)/deps/Versions.make
perf.h: $(JULIAHOME)/deps/*.version
echo '#include "cblas.h"' > $@
echo '#include "$(DSFMTDIR)/dSFMT.c"' >> $@

Expand Down