22 lines
468 B
C++
22 lines
468 B
C++
// Copyright (C) 2018 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
/**
|
|
* @brief A header file for CNNNetwork tools
|
|
* @file ie_cnn_network_tools.h
|
|
*/
|
|
#pragma once
|
|
#include <vector>
|
|
#include "ie_common.h"
|
|
#include "ie_icnn_network.hpp"
|
|
|
|
namespace InferenceEngine {
|
|
namespace details {
|
|
|
|
INFERENCE_ENGINE_API_CPP(std::vector<CNNLayerPtr>) CNNNetSortTopologically(const ICNNNetwork & network);
|
|
|
|
} // namespace details
|
|
} // namespace InferenceEngine
|