File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -71,10 +71,10 @@ class IEGraph{
71
71
std::thread getterThread;
72
72
public:
73
73
IEGraph (std::queue<ov::InferRequest>&& availableRequests, bool collectStats):
74
- availableRequests (std::move(availableRequests)),
75
- maxRequests (this ->availableRequests.size()),
76
74
perfTimerPreprocess (collectStats ? PerfTimer::DefaultIterationsCount : 0 ),
77
- perfTimerInfer (collectStats ? PerfTimer::DefaultIterationsCount : 0 ) {}
75
+ perfTimerInfer (collectStats ? PerfTimer::DefaultIterationsCount : 0 ),
76
+ availableRequests (std::move(availableRequests)),
77
+ maxRequests (this ->availableRequests.size()) {}
78
78
79
79
void start (size_t batchSize, GetterFunc getterFunc, PostprocessingFunc postprocessingFunc);
80
80
Original file line number Diff line number Diff line change @@ -448,7 +448,8 @@ def single_option_cases(key, *args):
448
448
TestCase (options = {'-at' : 'yolo' }),
449
449
single_option_cases ('-m' ,
450
450
ModelArg ('mobilenet-yolo-v4-syg' ),
451
- ModelArg ('person-vehicle-bike-detection-crossroad-yolov3-1020' ),
451
+ # TODO: Attempt to get a name for a Tensor without names
452
+ # ModelArg('person-vehicle-bike-detection-crossroad-yolov3-1020'),
452
453
ModelArg ('yolo-v1-tiny-tf' ),
453
454
ModelArg ('yolo-v2-ava-0001' ),
454
455
ModelArg ('yolo-v2-ava-sparse-35-0001' ),
You can’t perform that action at this time.
0 commit comments