28 lines
793 B
C++
28 lines
793 B
C++
// Copyright (C) 2018-2021 Intel Corporation
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
// clang-format off
|
|
#include "inference_engine.hpp"
|
|
|
|
#include "infer_request_wrap.hpp"
|
|
#include "utils.hpp"
|
|
// clang-format on
|
|
|
|
std::map<std::string, std::vector<InferenceEngine::Blob::Ptr>> getBlobs(
|
|
std::map<std::string, std::vector<std::string>>& inputFiles,
|
|
std::vector<benchmark_app::InputsInfo>& app_inputs_info);
|
|
|
|
std::map<std::string, std::vector<InferenceEngine::Blob::Ptr>> getBlobsStaticCase(
|
|
const std::vector<std::string>& inputFiles,
|
|
const size_t& batchSize,
|
|
benchmark_app::InputsInfo& app_inputs_info,
|
|
size_t requestsNum);
|
|
|
|
void copyBlobData(InferenceEngine::Blob::Ptr& dst, const InferenceEngine::Blob::Ptr& src);
|