blob: 1f4b4e5de14981de1e7731dab9fba97d42f9b700 [file] [log] [blame]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include <memory>
#include <vector>
#include <functional>
namespace armnn
{
using CompiledBlobDeleter = std::function<void(const void*)>;
using CompiledBlobPtr = std::unique_ptr<void, CompiledBlobDeleter>;
class ISubgraphViewConverter
{
public:
virtual ~ISubgraphViewConverter() {}
virtual std::vector<CompiledBlobPtr> GetOutput() = 0;
};
} // namespace armnn