We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da3c39b commit 9b5d37cCopy full SHA for 9b5d37c
model_api/cpp/tilers/include/tilers/tiler_base.h
@@ -22,7 +22,7 @@ class TilerBase {
22
public:
23
TilerBase(const std::shared_ptr<ImageModel>& model,
24
const ov::AnyMap& configuration,
25
- ExecutionMode exec_mode = ExecutionMode::async);
+ ExecutionMode exec_mode = ExecutionMode::sync);
26
27
virtual ~TilerBase() = default;
28
@@ -43,5 +43,5 @@ class TilerBase {
43
float tiles_overlap = 0.5f;
44
float iou_threshold = 0.45f;
45
bool tile_with_full_img = true;
46
- ExecutionMode run_mode = ExecutionMode::async;
+ ExecutionMode run_mode = ExecutionMode::sync;
47
};
0 commit comments