Skip to content

Commit c37b893

Browse files
[DOCS] optimizer header fix (#1545)
1 parent 97b4151 commit c37b893

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

libraries/dl-streamer/docs/source/dev_guide/optimizer.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ Options:
1717
--log-level LEVEL Configure the logging detail level
1818
```
1919

20-
- Increasing the **search duration** will increase the chances of discovering more performant pipelines.
21-
-> Default: `300` seconds
22-
- Increasing the **sample duration** will improve the stability of the search.
23-
-> Default: `10` seconds
24-
- Available **log levels** are: CRITICAL, FATAL, ERROR, WARN, INFO, DEBUG.
25-
-> Default: `INFO`
20+
- Increasing the **search duration** will increase the chances of discovering more performant pipelines.
21+
-> Default: `300` seconds
22+
- Increasing the **sample duration** will improve the stability of the search.
23+
-> Default: `10` seconds
24+
- Available **log levels** are: CRITICAL, FATAL, ERROR, WARN, INFO, DEBUG.
25+
-> Default: `INFO`
2626

2727
>Note: Search duration and sample duration both affect the amount of pipelines that will be explored during the search.
2828
### Example
@@ -57,17 +57,17 @@ The easiest way of importing the optimizer into your scripts is to include it in
5757

5858
Targets which are exported in order to facilitate usage inside of scripts:
5959

60-
#### `preprocess_pipeline(pipeline) -> processed_pipeline`
61-
>`pipeline` - A string containing a valid DL Streamer pipeline.
60+
### `preprocess_pipeline(pipeline) -> processed_pipeline`
61+
>`pipeline` - A string containing a valid DL Streamer pipeline.
6262
>`processed_pipeline` - A string containing the pipeline with all relevant substitutions.
6363
6464
Perform quick search and replace for known combinations of elements with more performant alternatives.
6565

66-
#### `get_optimized_pipeline(pipeline, search_duration, sample_duration) -> (optimized_pipeline, fps)`
67-
>`pipeline` - A string containing a valid DL Streamer pipeline.
68-
>`search_duration` - The duration of searching for optimized pipelines in seconds, default `300`.
69-
>`sample_duration` - The duration of sampling each candidate pipeline in seconds, default `10`.
70-
>`optimized_pipeline` - A string containing the best performing pipeline that has been found during the search.
66+
### `get_optimized_pipeline(pipeline, search_duration, sample_duration) -> (optimized_pipeline, fps)`
67+
>`pipeline` - A string containing a valid DL Streamer pipeline.
68+
>`search_duration` - The duration of searching for optimized pipelines in seconds, default `300`.
69+
>`sample_duration` - The duration of sampling each candidate pipeline in seconds, default `10`.
70+
>`optimized_pipeline` - A string containing the best performing pipeline that has been found during the search.
7171
>`fps` - The measured fps of the best perfmorming pipeline.
7272
7373
Runs a series of optimization steps on the pipeline searching for a better performing versions.

0 commit comments

Comments
 (0)