forked from hanabi1224/Programming-Language-Benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bench_v.yaml
75 lines (75 loc) · 1.4 KB
/
bench_v.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
lang: v
problems:
- name: helloworld
source:
- 1.v
- name: binarytrees
source:
- 1.v
- name: nbody
source:
- 1.v
- name: pidigits
source:
- 1.v
- 2.v
- name: edigits
source:
- 1.v
- name: fasta
source:
- 1.v
- name: spectral-norm
source:
- 1.v
- name: fannkuch-redux
source:
- 1.v
- name: coro-prime-sieve
source:
- 1.v
# - name: json-serde
# source:
# - 1.v
# - name: mandelbrot
# source:
# - 1.v
- name: nsieve
source:
- 1.v
- 2.v
- name: lru
source:
- 1.v
- name: http-server
source:
- 1.v
- name: regex-redux
source:
- 1.v
compiler_version_command: v --version
compiler_version_regex:
runtime_version_parameter:
runtime_version_regex:
source_rename_to: app.v
environments:
- os: linux
compiler: v/clang+gc
version: latest
include:
build: v -prod -gc boehm_full_opt -cc clang -cflags "-march=broadwell" -stats -showcc -no-rsp app.v
after_build:
- mv app out
out_dir: out
run_cmd: app
# allow_failure: true
# - os: linux
# compiler: v+gc+zig
# version: latest
# include:
# build: v -prod -gc boehm_full_opt -cc zig -cflags "cc -march=broadwell" -stats -showcc -no-rsp app.v
# after_build:
# - mv app out
# out_dir: out
# run_cmd: app
# allow_failure: true