-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfpm.toml
66 lines (53 loc) · 1.34 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
name = "athena"
version = "1.3.3"
license = "MIT"
author = "Ned Thaddeus Taylor"
maintainer = "[email protected]"
description = "A Fortran library for building, training and testing feed-forward neural networks"
[library]
source-dir="src"
[build]
auto-executables = true
auto-tests = true
auto-examples = false
module-naming = false
[install]
library = false
[fortran]
implicit-typing = false
implicit-external = false
source-form = "free"
[preprocess]
[preprocess.cpp]
[[example]]
name = "sine"
source-dir = "example/sine/src"
main = "main.f90"
[example.dependencies]
example_library = { path = "example/example_library"}
[[example]]
name = "simple"
source-dir = "example/simple/src"
main = "main.f90"
[example.dependencies]
example_library = { path = "example/example_library"}
[[example]]
name = "mnist"
source-dir = "example/mnist/src"
[example.dependencies]
example_library = { path = "example/example_library"}
[[example]]
name = "mnist_3D"
source-dir = "example/mnist_3D/src"
[example.dependencies]
example_library = { path = "example/example_library"}
[[example]]
name = "mnist_bn"
source-dir = "example/mnist_bn/src"
[example.dependencies]
example_library = { path = "example/example_library"}
[[example]]
name = "mnist_drop"
source-dir = "example/mnist_drop/src"
[example.dependencies]
example_library = { path = "example/example_library"}