File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -120,6 +120,9 @@ runconfig:
120
120
# first available CUDA device. Ignored if *gpu_enabled* is False.
121
121
gpu_id : int(min=0, required=False)
122
122
123
+ # QA code options
124
+ QA : include('qa_options', required=False)
125
+
123
126
# Place holder for user set path to log file.
124
127
# If not set, log sent to screen or input yaml path derived file
125
128
logging : include('log_nfo', required=False)
@@ -169,3 +172,9 @@ log_nfo:
169
172
path : str()
170
173
# Log file write mode. 'a' for append to existing. 'w' for new or overwrite existing.
171
174
write_mode : enum('a', 'w', required=False)
175
+
176
+ qa_options :
177
+ # Enabled file format validation
178
+ validate : bool(required=False)
179
+ # Produce a data summary
180
+ quality : bool(required=False)
Original file line number Diff line number Diff line change @@ -137,6 +137,8 @@ runconfig:
137
137
# first available CUDA device. Ignored if *gpu_enabled* is False.
138
138
gpu_id : int(min=0, required=False)
139
139
140
+ QA : include('qa_options', required=False)
141
+
140
142
# Place holder for user set path to log file.
141
143
# If not set, log sent to screen or input yaml path derived file
142
144
logging : include('log_nfo', required=False)
@@ -364,3 +366,10 @@ gunw_datasets:
364
366
connectedComponents : bool(required=False)
365
367
coherenceMagnitude : bool(required=False)
366
368
unwrappedPhase : bool(required=False)
369
+
370
+
371
+ qa_options :
372
+ # Enabled file format validation
373
+ validate : bool(required=False)
374
+ # Produce a data summary
375
+ quality : bool(required=False)
You can’t perform that action at this time.
0 commit comments