-
Notifications
You must be signed in to change notification settings - Fork 1
/
fpm.toml
86 lines (73 loc) · 2.13 KB
/
fpm.toml
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
76
77
78
79
80
81
82
83
84
85
86
name = "forbenchmark"
version = "VERSION"
author = "Seyed Ali Ghasemi"
maintainer = "info@gha3mi.com"
copyright = "Copyright 2023, Seyed Ali Ghasemi"
license = "LICENSE"
[build]
auto-executables = false
auto-tests = false
auto-examples = false
module-naming = false
link = ["lapack", "blas"]
[install]
library = false
[fortran]
implicit-typing = false
implicit-external = false
source-form = "free"
[dependencies]
kinds = {git="https://github.com/gha3mi/kinds.git"}
fortime = {git="https://github.com/gha3mi/fortime.git"}
FACE = {git="https://github.com/szaghi/FACE.git"}
forunittest = {git="https://github.com/gha3mi/forunittest.git"}
[preprocess]
[preprocess.cpp]
[[example]]
name = "demo"
source-dir = "example"
main = "demo.f90"
[[test]]
name = "test_dot"
source-dir = "benchmarks/dot/test"
main = "test_dot.f90"
[test.dependencies]
fordot = {git="https://github.com/gha3mi/fordot.git"}
fast_math = {git="https://github.com/jalvesz/fast_math.git"}
[[example]]
name = "dot"
source-dir = "benchmarks/dot"
main = "dot.f90"
[example.dependencies]
fordot = {git="https://github.com/gha3mi/fordot.git"}
fast_math = {git="https://github.com/jalvesz/fast_math.git"}
[[example]]
name = "dot_co"
source-dir = "benchmarks/dot"
main = "dot_co.f90"
[example.dependencies]
fordot = {git="https://github.com/gha3mi/fordot.git"}
[[example]]
name = "matmul_mm"
source-dir = "benchmarks/matmul"
main = "matmul_mm.f90"
[example.dependencies]
formatmul = {git="https://github.com/gha3mi/formatmul.git"}
[[example]]
name = "matmul_mm_co"
source-dir = "benchmarks/matmul"
main = "matmul_mm_co.f90"
[example.dependencies]
formatmul = {git="https://github.com/gha3mi/formatmul.git"}
[[example]]
name = "matmul_mv"
source-dir = "benchmarks/matmul"
main = "matmul_mv.f90"
[example.dependencies]
formatmul = {git="https://github.com/gha3mi/formatmul.git"}
[[example]]
name = "matmul_mv_co"
source-dir = "benchmarks/matmul"
main = "matmul_mv_co.f90"
[example.dependencies]
formatmul = {git="https://github.com/gha3mi/formatmul.git"}