-
Notifications
You must be signed in to change notification settings - Fork 236
/
Copy path.proj.toml
71 lines (56 loc) · 1010 Bytes
/
.proj.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
project_name = "flexflow"
testsuite_macro = "FF_TEST_SUITE"
namespace_name = "FlexFlow"
header_extension = ".h"
[targets.utils]
type = "lib"
tests = true
benchmarks = true
[targets.op-attrs]
type = "lib"
tests = true
benchmarks = false
[targets.kernels]
type = "lib"
tests = true
benchmarks = false
[targets.pcg]
type = "lib"
tests = true
benchmarks = false
[targets.substitutions]
type = "lib"
tests = true
benchmarks = false
[targets.compiler]
type = "lib"
tests = true
benchmarks = true
[targets.substitution-generator]
type = "lib"
tests = true
benchmarks = false
[targets.local-execution]
type = "lib"
tests = true
benchmarks = false
[targets.models]
type = "lib"
tests = true
benchmarks = false
[targets.export-model-arch]
type = "bin"
[targets.substitution-to-dot]
type = "bin"
# default_build_targets = [
# "utils",
# ]
# default_test_targets = [
# "utils",
# ]
# default_benchmark_targets = [
# "utils",
# ]
[cmake_flags_extra]
FF_CUDA_ARCH = "60"
CMAKE_CUDA_ARCHITECTURES = "60"