2 "$schema": "https://json-schema.org/draft/2020-12/schema",
3 "$id": "https://nvidia.com/dw/app.schema.json",
4 "title": "DW Application Descriptor",
5 "description": "The descriptor of a DriveWorks application. The keys in JSON should appear in the same order as the properties are documented in the schema.",
13 "additionalProperties": false,
16 "description": "An optional description of the application",
20 "description": "The unique name of the application",
22 "pattern": "^[a-zA-Z][a-zA-Z0-9_]*$"
25 "description": "The log specification for the application. For details about the possible values and their format see src/dwndf/logger/README.",
29 "description": "The parameters which are exposed as command line arguments of the application. The order is user defined.",
31 "additionalProperties": false,
32 "patternProperties": {
33 "^[a-z][a-zA-Z0-9_]*(\\.[a-z][a-zA-Z0-9_]*)?$": {
34 "description": "The key is the name of the parameter (in camelCase) which must be unique within the collection of parameters in this application. The value describes the parameter itself.",
35 "$ref": "#/$defs/parameter"
40 "description": "The (relative) path of the .required-sensors.json file",
42 "pattern": "^.+\\.required-sensors\\.json$"
44 "sensorMappingLookups": {
45 "description": "The (relative) lookup path(s) of the .sensor-mappings.json file(s) or dir(s). The lookup order within a directory is alphabetical order. If there is the same layout in multiple lookup-ed files, the latest lookup-ed one overrides former ones.",
52 "description": "Sensor mappings collection for various layouts. The order of sensor mapping names is user defined. In general, app.json doesn't directly specify sensorMappings field. Instead, it usually uses sensorMappingLookups field to load sensorMappings, so that users don't need to repeat the same sensor mappings again and again in various app.json files. If there is the same layout in both \"sensorMappings\" and lookup-ed file(s) in \"sensorMappingLookups\", the latest lookup-ed one (from \"sensorMappingLookups\") overrides the one in \"sensorMappings\" field.",
54 "additionalProperties": false,
55 "patternProperties": {
56 "^[a-zA-Z][a-zA-Z0-9 ._-]*$": {
57 "description": "The key is the layout name of the sensor mapping which must be unique within the collection of sensor mappings. The value is the object mapping a new generic sensor name to an existing sensor name in rig.",
59 "additionalProperties": false,
60 "patternProperties": {
61 "^[a-zA-Z][a-zA-Z0-9 .:_-]*$": {
63 "pattern": "^([a-z0-9]+:)*[a-z0-9]+$"
70 "description": "The subcomponents. The order should be alphabetical.",
72 "additionalProperties": false,
73 "patternProperties": {
74 "^[a-z][a-zA-Z0-9]*$": {
75 "description": "The key is the name of the component instance (in camelCase() which must be unique within the collection of subcomponents in this application. The value describes the component instance itself.",
76 "$ref": "#/$defs/subcomponent"
81 "description": "The connections. The order should be alphabetical based on the source port (considering an array index as a numeric) and the connection parameter names.",
84 "$ref": "#/$defs/connection"
87 "namedParameterSets": {
88 "description": "The key is the fully qualified name of the subcomponent (in the form of 1 or multiple 'subcomponentInstanceName' separated by dots). An empty key matches all subcomponents.",
90 "additionalProperties": false,
91 "patternProperties": {
92 "^([a-z][a-zA-Z0-9]*(\\.[a-z][a-zA-Z0-9]*)*)?": {
93 "description": "The names of parameter value sets to be applied to all nodes under the subcomponent as default in the order they are specified (parameter values from later sets overwrite parameter values from previous sets).",
103 "description": "The key is the fully qualified name of the subcomponent (in the form of 1 or multiple 'subcomponentInstanceName' separated by dots). An empty key matches all subcomponents.",
105 "additionalProperties": false,
106 "patternProperties": {
107 "^([a-z][a-zA-Z0-9]*(\\.[a-z][a-zA-Z0-9]*)*)?": {
108 "description": "The names of WCET sets to be applied to all nodes under the subcomponent in the order they are specified (parameWCETslues from later sets overwrite WCETs from previous sets).",
118 "description": "The key is unique name matching the state name from SSM, value object that contains a STM schedule identifier. The order should be alphabetical.",
120 "additionalProperties": false,
121 "patternProperties": {
122 "^[A-Z][A-Z0-9_]*": {
123 "description": "STM schedule identifier.",
128 "additionalProperties": false,
132 "pattern": "^[a-z][a-zA-Z0-9_]*"
135 "description": "The flag if this SSM state should be selected by default (only one state should have this set).",
143 "description": "The key is a STM schedule identifier, value is the STM schedule. If none of the processes uses STM this key is optional. The order should be alphabetical.",
145 "additionalProperties": false,
146 "patternProperties": {
147 "^[a-z][a-zA-Z0-9_]*": {
148 "description": "The information needed to define the STM schedule.",
153 "additionalProperties": false,
156 "description": "DEPRECATED! The (relative) path of the .yaml file. This YAML is a temporary workaround as the .node-wcets.json is not ready yet and currently all wcets of RR passes are specified by this file (we are going to manage the WCET info along with each node descriptor, by then this entry will be removed). The key is the name of the each pass of a process. The naming rule of the key is to separate the process and pass with a full stop. The value is the corresponding wcet of the pass.",
158 "pattern": "^.+\\.yaml$"
161 "description": "The hyperepochs. The order should be alphabetical.",
163 "additionalProperties": false,
164 "patternProperties": {
165 "^[a-z][a-zA-Z0-9_]*$": {
166 "description": "The key is the name of the hyperepoch (in camelCase) which must be unique within the collection of hyperepochs in this schedule. The value describes the hyperepoch itself.",
171 "additionalProperties": false,
174 "description": "The period length of the hyperepoch (in nanoseconds). If not set the maximum of all contained epochs is used (their 'period' multiplied with their 'frames').",
178 "monitoringPeriod": {
179 "description": "The pfm monitoring threshold of the hyperepoch (in nanoseconds).",
184 "description": "The epochs. The order should be alphabetical.",
186 "additionalProperties": false,
187 "patternProperties": {
188 "^[a-z][a-zA-Z0-9_]*$": {
189 "description": "The key is the name of the epoch (in camelCase) which must be unique within the hyperepoch. The value describes the epoch itself.",
195 "additionalProperties": false,
198 "description": "The period length of the epoch (in nanoseconds)",
202 "monitoringPeriod": {
203 "description": "The pfm monitoring threshold of the epoch (in nanoseconds).",
208 "description": "The number of times the epoch is scheduled per hyperepoch (default: 1)",
213 "description": "2-Dimension array of passes. Position in array determines the Phase when pipeline execution is enabled. (0 - Unchanged, 1 - Phase1, 2 - Phase2 and so on) If user specifies Phase1 and Phase2 passes, then list of 0-Unchanged should be empty.",
216 "description": "The fully qualified names of passes. Refering to a component implicitly refers to all recursive passes. Alternatively a service pass can be referenced (in thre form 'ServiceName.process_name.PASS_NAME').The order should be alphabetical.",
220 "pattern": "^([a-z][a-zA-Z0-9]*(\\.[a-z][a-zA-Z0-9]*)*(\\.[A-Z][A-Z0-9_]*)?|[A-Z][a-zA-Z0-9]*\\.[a-zA-Z][a-zA-Z0-9_]*\\.[A-Z][A-Z0-9_]*)$"
226 "description": "The groups to schedule round robin. The order should be alphabetical.",
228 "additionalProperties": false,
229 "patternProperties": {
230 "^([a-zA-Z][a-zA-Z0-9_]*\\.)*[a-zA-Z][a-zA-Z0-9_:]*$": {
231 "description": "The key is the aliasGroups name. The value contains an array of fully qualified components which should have affinity to this aliasGroup. The order of the components should be alphabetical.",
235 "pattern": "^[a-z][a-zA-Z0-9]*(\\.[a-z][a-zA-Z0-9]*)*(\\.[A-Z][A-Z0-9_]*)?$"
246 "description": "The resource names usable by the hyperepoch with optionally enumerating passes for a specific affinity. The order should be alphabetical.",
248 "additionalProperties": false,
249 "patternProperties": {
250 "^([a-zA-Z][a-zA-Z0-9_]*\\.)*[a-zA-Z][a-zA-Z0-9_:]*$": {
251 "description": "The key is the resource name which may be prefixed by a machine name separate by a dot. The machine name must match the runOn attribute of a process which runs components also part of this hyperepoch. Omitting the machine name is only valid if the process doesn't specify a runOn attribute. The value contains an array of fully qualified passes which should have affinity to this resource. The order of the passes should be alphabetical.",
255 "pattern": "^[a-z][a-zA-Z0-9]*(\\.[a-z][a-zA-Z0-9]*)*(\\.[A-Z][A-Z0-9_]*)?$"
265 "passDependencies": {
266 "description": "The additional inter pass dependencies. The order should be alphabetical.",
268 "additionalProperties": false,
269 "patternProperties": {
270 "^([a-z][a-zA-Z0-9]*\\.)+[A-Z][A-Z0-9_]*$": {
271 "description": "The key is the fully qualified name of the pass (in the form of 1 or multiple 'subcomponentInstanceName.' followed by the pass name 'PASS_NAME'). The value contains an array of passes which the key pass depends on.",
275 "pattern": "^([a-z][a-zA-Z0-9]*\\.)+[A-Z][A-Z0-9_]*$"
282 "description": "The initialization order of the schedule, the smaller of the value, the earlier it is initialized. If not set, the schedule is unprioritized. Only value 0 is supported for now, which means only one prioritized schedule is allowed",
287 "description": "The pfm monitored passes and the corresponding monitoring threshold (in nanoseconds).",
289 "additionalProperties": false,
290 "patternProperties": {
291 "^([a-z][a-zA-Z0-9]*\\.)+[A-Z][A-Z0-9_]*$": {
292 "description": "The key is the fully qualified name of the pass (in the form of 1 or multiple 'subcomponentInstanceName.' followed by the pass name 'PASS_NAME'). The value is the monitoring threshold for the pass (in nanoseconds).",
302 "stmExternalRunnables": {
303 "description": "Additional runnables marked as EXTERN in the STM schedule. The order should be alphabetical.",
305 "additionalProperties": false,
306 "patternProperties": {
307 "^[A-Z][A-Z0-9_]*": {
308 "description": "The key is the runnable name. The value contains the WCET and optional pass dependencies.",
314 "additionalProperties": false,
317 "description": "The processor types used by the external pass. The order should be alphabetical.",
332 "description": "The WCET in nanoseconds",
336 "passDependencies": {
337 "description": "The array of passes the runnable depends on (in the form of 1 or multiple 'subcomponentInstanceName.' followed by the pass name 'PASS_NAME').",
341 "pattern": "^([a-z][a-zA-Z0-9]*\\.)+[A-Z][A-Z0-9_]*$"
350 "description": "The processes. The order should be alphabetical.",
352 "additionalProperties": false,
353 "patternProperties": {
354 "^[a-zA-Z][a-zA-Z0-9_]*$": {
355 "description": "The key is the name of the process (in snake_case) which must be unique within the collection of processes. The value describes the process itself.",
360 "additionalProperties": false,
363 "description": "The name of the executable",
368 "description": "The command line arguments passed to the executable",
370 "additionalProperties": false,
371 "patternProperties": {
372 "^[a-zA-Z0-9_-]+$": {
373 "description": "The key is one command line argument. The value is not used (if it is the boolean value true), a second argument (if it is a string), multiple additional arguments (if it is an array of strings).",
395 "description": "The machine identifier the process should run on (default: same machine the application is invoked on)",
397 "pattern": "^[a-zA-Z][a-zA-Z0-9_]*$"
400 "description": "The log specification for this process (if supported by the executable). If not specified, the logSpec specified for the application is used as a default (in that case the application should not use 'file:' with a hard coded path)",
404 "description": "DEPRECATED! The services should be replaced with nodes inserted by transformations. The order should be alphabetical.",
406 "additionalProperties": false,
407 "patternProperties": {
408 "^[A-Z][a-zA-Z0-9]*$": {
409 "description": "The key is the name of the service. The parameter value can either be of primitive type or an homongeneous array of a primitive type. A string value as well as string values in an array are subject to substition. The string can be either the literal value or a placeholder referencing a parameter of this application. The placeholder must have the form of '$paramName' or if the application parameter is an array and only a single value should be passed '$paramName[N]' where N is an index within the array. To pass a literal '$' character it needs to be escaped using another '$' character. As a wildcard the key can be the string '*'. The corresponding value must be '$*'. If it is present all parameters of the application are passed to the component if it has a parameter with a matching name. Additional explicit parameter can be present beside the wildcard and override the application parameter values.",
410 "$ref": "#/$defs/service"
415 "description": "The subcomponent names which should be run in this process (if supported by the executable). This can be either a fully qualified node name or a fully qualified graphlet name which implies that all nodes recursively under that graphlet should be selected.",
423 "description": "Arbitrary data section which the process has to read on its own",
431 "description": "DEPRECATED! The (relative) path of the additional .json file. This extraInfo JSON is a temporary workaround as the loader code depends on this, and we need to cleanup this after RR migration. The key is the parameters and configurations which are required by the loader code. The value is an object which corresponds to the various unique attributes of the key.",
433 "pattern": "^.+\\.json$"
442 "additionalProperties": false,
445 "description": "The C++ type name of the parameter",
450 "description": "The array size if this is an array of parameter values (default: a single-value parameter)",
455 "description": "The default value (default: none)",
471 "description": "Any text describing the parameter (default: empty string)",
481 "additionalProperties": false,
484 "description": "The (relative) path of a component ending in .node.json / .graphlet.json.",
486 "pattern": "^.+\\.(node|graphlet)\\.json$"
489 "description": "The parameters passed to the subcomponent. The order should be alphabetical.",
491 "additionalProperties": false,
492 "patternProperties": {
493 "^([a-z][a-zA-Z0-9_]*(\\.[a-z][a-zA-Z0-9_]*)?|\\*)$": {
494 "description": "The key is the name of the parameter and must match a parameter declared in the descriptor of the referenced component. The parameter value can either be of primitive type or an homongeneous array of a primitive type. A string value as well as string values in an array are subject to substition. The string can be either the literal value or a placeholder referencing a parameter of this application. The placeholder must have the form of '$paramName' or if the application parameter is an array and only a single value should be passed '$paramName[N]' where N is an index within the array. To pass a literal '$' character it needs to be escaped using another '$' character. As a wildcard the key can be the string '*'. The corresponding value must be '$*'. If it is present all parameters of the application are passed to the component if it has a parameter with a matching name. Additional explicit parameter can be present beside the wildcard and override the application parameter values.",
519 "additionalProperties": false,
522 "description": "The name of an output port of a subcomponent (in the form 'subcomponentInstanceName.OUTPUT_PORT_NAME') optionally followed by a non-negative array index wrapped in brackets. If an identifier with the prefix 'EXTERNAL:' is provided, it means the connection is an INBOUND connection and the producer is outside of the DAG.",
524 "pattern": "^[a-z][a-zA-Z0-9]*\\.[A-Z][A-Z0-9_]*(\\[[0-9]+\\])?$|^EXTERNAL:[A-Z][A-Z0-9_]*$"
527 "description": "The collection of ports receiving the data. The order should be alphabetical.",
529 "additionalProperties": false,
530 "patternProperties": {
531 "^[a-z][a-zA-Z0-9]*\\.[A-Z][A-Z0-9_]*(\\[[0-9]+\\])?$|^EXTERNAL:[A-Z][A-Z0-9_]*$": {
532 "description": "The key is the name of an input port of a subcomponent (in the form 'subcomponentInstanceName.INPUT_PORT_NAME') optionally followed by a non-negative array index wrapped in brackets. If an identifier with the prefix 'EXTERNAL:' is provided, it means the connection is an OUTBOUND connection and the consumer is outside of the DAG. The value contains parameters specific to this destination port.",
536 "additionalProperties": false,
539 "description": "Any text describing the connection to this destination (default: empty string)",
543 "patternProperties": {
544 "^[a-z][a-zA-Z0-9_-]*$": {
545 "description": "The key is the name of the parameter and the value can be any primitive type. The string can be either the literal value or a placeholder referencing a parameter of this application. The placeholder must have the form of '$paramName', which means a literal string value cannot start with '$' since that would always be interpreted as referencing a parameter",
557 "description": "Parameters for multicast connections. The order should be alphabetical. The string can be either the literal value or a placeholder referencing a parameter of this application. The placeholder must have the form of '$paramName', which means a literal string value cannot start with '$' since that would always be interpreted as referencing a parameter",
559 "additionalProperties": false,
560 "patternProperties": {
561 "^[a-z][a-zA-Z0-9_-]*$": {
562 "description": "The key is the name of the parameter and the value can any primitive type",
572 "description": "Any text describing the connections from the source (default: empty string)",
582 "additionalProperties": false,
585 "description": "The service parameters",
589 "description": "The names of the passes. The order of the passes should be alphabetical.",
593 "pattern": "^[A-Z][A-Z0-9_]*$"