forked from hanabi1224/Programming-Language-Benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bench_julia.yaml
54 lines (54 loc) · 1.15 KB
/
bench_julia.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
lang: julia
problems:
- name: helloworld
source:
- 1.jl
- name: binarytrees
source:
- 4.jl
# - name: mandelbrot
# source:
# - 8.jl
- name: nbody
source:
- 7.jl
- name: fasta
source:
- 7.jl
- name: knucleotide
source:
- 8.jl
- name: fannkuch-redux
source:
- 2.jl
- name: spectral-norm
source:
- 2.jl
- 3.jl
- name: pidigits
source:
- 1.jl
- 3.jl
- name: nsieve
source:
- 1.jl
compiler_version_command:
compiler_version_regex:
runtime_version_parameter: -v
runtime_version_regex:
source_rename_to: c.jl
environments:
- os: linux
compiler: julia
version: latest
docker: julia
docker_runtime_dir: /usr/local/julia
include: julia
build: cp c.jl out/App/src
out_dir: out
# needs extra warmup here because precompiled .ji files
# under ~/.julia/compiled use identical file name for all problems.
warmup: true
run_cmd: julia/bin/julia -t auto -O3 -q --check-bounds=no --startup-file=no --sysimage-native-code=yes run.jl
# TODO: compile app with PackageCompiler.jl
# it's currently TOOOOOOO SLOW