Skip to content

Commit b823bc9

Browse files
author
Matevz Morato
committed
Remove unused comments from openvino tests
1 parent 1213b8b commit b823bc9

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tests/src/ondevice_tests/openvino_blob_test.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,15 @@ void checkBlob(dai::OpenVINO::Blob& blob) {
1515
for(const auto& in : blob.networkInputs) {
1616
std::string name = in.first;
1717
auto tensor = in.second;
18-
// printf("'%s - dims: %d - order: %04x - type: %d' ", name.c_str(), tensor.numDimensions, tensor.order, tensor.dataType);
1918
}
2019
for(const auto& out : blob.networkOutputs) {
2120
std::string name = out.first;
2221
auto tensor = out.second;
23-
// printf("'%s - dims: %d - order: %04x - type: %d' ", name.c_str(), tensor.numDimensions, tensor.order, tensor.dataType);
2422
}
25-
// printf("(%u %u %u %u)\n", blob.stageCount, blob.numShaves, blob.numSlices, blob.version);
2623

2724
REQUIRE(blob.networkInputs.size() == 1);
2825
REQUIRE(blob.networkInputs.at("0").numDimensions == 4);
2926
REQUIRE(blob.networkInputs.at("0").order == dai::TensorInfo::StorageOrder::NCHW);
30-
// REQUIRE(blob.networkInputs.at("0").dataType == dai::TensorInfo::DataType::U8F);
3127

3228
REQUIRE(blob.networkOutputs.size() == 1);
3329
REQUIRE(blob.networkOutputs.at("14").numDimensions == 4);

0 commit comments

Comments
 (0)