Skip to content
This repository was archived by the owner on Aug 28, 2023. It is now read-only.

Commit 1bb6c95

Browse files
author
Artyom Tugaryov
authored
[81875] Fix Remote profiling (#42)
1 parent 8899288 commit 1bb6c95

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

wb/utils/benchmark_report/benchmark_report.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
import re
1818
from typing import List
1919

20-
from wb.main.enumerates import DeviceTypeEnum
21-
2220

2321
class BenchmarkReport:
2422
separator = ';'
@@ -94,7 +92,7 @@ def batch(self) -> int:
9492
def streams(self) -> int:
9593
device = self.configuration_setup_device
9694
name = f'number of {device} streams'
97-
if DeviceTypeEnum.is_vpu(device):
95+
if 'MYRIAD' in name or name == 'HDDL':
9896
name = 'number of parallel infer requests'
9997
return int(self.get_value(self.configuration_setup, name))
10098

0 commit comments

Comments
 (0)