Skip to content

Commit 9b5d37c

Browse files
authored
fix (#232)
1 parent da3c39b commit 9b5d37c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

model_api/cpp/tilers/include/tilers/tiler_base.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class TilerBase {
2222
public:
2323
TilerBase(const std::shared_ptr<ImageModel>& model,
2424
const ov::AnyMap& configuration,
25-
ExecutionMode exec_mode = ExecutionMode::async);
25+
ExecutionMode exec_mode = ExecutionMode::sync);
2626

2727
virtual ~TilerBase() = default;
2828

@@ -43,5 +43,5 @@ class TilerBase {
4343
float tiles_overlap = 0.5f;
4444
float iou_threshold = 0.45f;
4545
bool tile_with_full_img = true;
46-
ExecutionMode run_mode = ExecutionMode::async;
46+
ExecutionMode run_mode = ExecutionMode::sync;
4747
};

0 commit comments

Comments
 (0)