blob: 86fccf0e513a0b4fae665ede8089c9d5278d3f7b [file] [log] [blame]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include "backends/IBackendInternal.hpp"
#include "NeonLayerSupport.hpp"
namespace armnn
{
class NeonBackend : public IBackendInternal
{
public:
NeonBackend() = default;
~NeonBackend() = 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
NeonLayerSupport m_LayerSupport;
};
} // namespace armnn