You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Regular passes: `lir_<index>_<pass>_(control_flow|data_flow)_(in|out).xml` (creates both input and output files)
25
+
- Final dump: `lir_<index>_Final_(control_flow|data_flow).xml` (creates single file only)
26
+
27
+
When `name_modifier` is provided, it is prepended to file names as a prefix:
28
+
-`name_modifier=subgraph_name` prepends the Snippets Subgraph friendly name where available (e.g., final dump).
29
+
- any other non-empty value prepends that literal value (e.g., `branchA_lir_...`).
30
+
22
31
Option names are case insensitive, the following options are supported:
23
32
-`passes` : Dump LIR around the passes if passes name are specified.
24
33
It support multiple comma separated pass names. The names are case insensitive.
25
34
This option is a must have, should not be omitted.
26
-
Special values: 'all' - dump all passes (includes 'final'), 'final' - dump final LIR snapshot right before code generation.
35
+
Special values: 'all' - dump all passes (includes 'final'), 'final' - dump final LIR snapshot right before code generation (single file, no _in/_out suffix).
27
36
-`dir` : Path to dumped LIR files.
28
37
If omitted, it defaults to snippets_LIR_dump.
29
38
If specified path doesn't exist, the directory will be created automatically.
30
39
-`formats` : Support values are control_flow, data_flow and all.
31
40
If omitted, it defaults to control_flow.
32
-
-`name_modifier` : Optional naming modifier for dump files. Supported value is `subgraph_name`, which prepends the Snippets Subgraph friendly name to dumped files. If omitted, no name modification is performed. Note: when using `subgraph_name`, characters '/' and ':' in the subgraph name are replaced with '_' for filesystem compatibility.
33
-
34
-
Notes:
35
-
- File names follow the same `OV_SNIPPETS_DUMP_LIR` convention: `lir_<index>_<pass>_(control_flow|data_flow)_(in|out).xml`. When `name_modifier=subgraph_name` is set, it is prepended to the file name.
41
+
-`name_modifier` : Optional file-name prefix. Special value `subgraph_name` prepends the Snippets Subgraph friendly name to dumped files (where available). Any other non-empty value is used as a literal prefix. If omitted, no name modification is performed. Note: when using `subgraph_name`, characters '/' and ':' in the subgraph name are replaced with '_' for filesystem compatibility.
0 commit comments