blob: c3797158a68eac867330f19f5627e2a1df1e5c3a [file] [log] [blame]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include "backends/IBackendInternal.hpp"
#include "RefLayerSupport.hpp"
namespace armnn
{
class RefBackend : public IBackendInternal
{
public:
RefBackend() = default;
~RefBackend() = default;
const std::string& GetId() const override;
const ILayerSupport& GetLayerSupport() const override;
std::unique_ptr<IWorkloadFactory> CreateWorkloadFactory() const override;
private:
static const std::string s_Id;
// TODO initialize
RefLayerSupport m_LayerSupport;
};
} // namespace armnn