forked from flexflow/flexflow-train
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.proj.toml
More file actions
124 lines (107 loc) · 2.37 KB
/
.proj.toml
File metadata and controls
124 lines (107 loc) · 2.37 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
project_name = "flexflow"
testsuite_macro = "FF_TEST_SUITE"
namespace_name = "FlexFlow"
header_extension = ".h"
cuda_launch_cmd = [
"nixGL",
"--",
]
layout_ignore_paths = [
"lib/runtime",
"lib/kernels",
"lib/utils/test/common",
"lib/compiler/ffi",
"lib/op-attrs/ffi",
"lib/pcg/ffi",
"lib/substitutions/ffi",
"lib/utils/ffi",
"lib/ffi",
"lib/utils/include/utils/graph/docs",
"lib/compiler/test/src/internal",
"lib/local-execution/test/src/internal",
"bin/protobuf-to-json",
]
[targets.utils]
type = "lib"
has-cpu-only-tests = true
has-cpu-only-benchmarks = true
has-cuda-tests = false
has-cuda-benchmarks = false
[targets.op-attrs]
type = "lib"
has-cpu-only-tests = true
has-cpu-only-benchmarks = false
has-cuda-tests = false
has-cuda-benchmarks = false
[targets.kernels]
type = "lib"
has-cpu-only-tests = true
has-cpu-only-benchmarks = false
has-cuda-tests = true
has-cuda-benchmarks = false
[targets.pcg]
type = "lib"
has-cpu-only-tests = true
has-cpu-only-benchmarks = false
has-cuda-tests = false
has-cuda-benchmarks = false
[targets.substitutions]
type = "lib"
has-cpu-only-tests = true
has-cpu-only-benchmarks = false
has-cuda-tests = false
has-cuda-benchmarks = false
[targets.compiler]
type = "lib"
has-cpu-only-tests = true
has-cpu-only-benchmarks = true
has-cuda-tests = false
has-cuda-benchmarks = false
[targets.substitution-generator]
type = "lib"
has-cpu-only-tests = true
has-cpu-only-benchmarks = false
has-cuda-tests = false
has-cuda-benchmarks = false
[targets.task-spec]
type = "lib"
has-cpu-only-tests = true
has-cpu-only-benchmarks = false
has-cuda-tests = false
has-cuda-benchmarks = false
[targets.local-execution]
type = "lib"
has-cpu-only-tests = true
has-cpu-only-benchmarks = false
has-cuda-tests = true
has-cuda-benchmarks = false
# [targets.local-pcg-execution]
# type = "lib"
# has-cpu-only-tests = true
# has-cpu-only-benchmarks = false
# has-cuda-tests = false
# has-cuda-benchmarks = false
[targets.models]
type = "lib"
has-cpu-only-tests = true
has-cpu-only-benchmarks = false
has-cuda-tests = false
has-cuda-benchmarks = false
[targets.export-model-arch]
type = "bin"
cuda = false
[targets.substitution-to-dot]
type = "bin"
cuda = false
# default_build_targets = [
# "utils",
# ]
# default_test_targets = [
# "utils",
# ]
# default_benchmark_targets = [
# "utils",
# ]
[cmake_flags_extra]
FF_CUDA_ARCH = "60"
CMAKE_CUDA_ARCHITECTURES = "60"