You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
454 B
28 lines
454 B
//
|
|
// Copyright © 2017 Arm Ltd. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "DriverOptions.hpp"
|
|
|
|
#include <armnn/ArmNN.hpp>
|
|
|
|
namespace armnn_driver
|
|
{
|
|
|
|
class ArmnnDevice
|
|
{
|
|
protected:
|
|
ArmnnDevice(DriverOptions options);
|
|
virtual ~ArmnnDevice() {}
|
|
|
|
protected:
|
|
armnn::IRuntimePtr m_Runtime;
|
|
armnn::IGpuAccTunedParametersPtr m_ClTunedParameters;
|
|
DriverOptions m_Options;
|
|
};
|
|
|
|
} // namespace armnn_driver
|