17 lines
365 B
C++
17 lines
365 B
C++
// Copyright (C) 2018-2021 Intel Corporation
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
/**
|
|
* @brief A header file that provides a set minimal required Inference Engine API.
|
|
* @file inference_engine.hpp
|
|
*/
|
|
#pragma once
|
|
|
|
#include "ie_transformations.hpp"
|
|
#include "ie_compound_blob.h"
|
|
#include "ie_core.hpp"
|
|
|
|
// remove in 2022.1 major release
|
|
#include <iostream>
|