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.
19 lines
347 B
19 lines
347 B
//
|
|
// Copyright © 2022 Arm Ltd and Contributors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
//
|
|
|
|
#include "canonical/ArmnnDriver.hpp"
|
|
|
|
#include <nnapi/IDevice.h>
|
|
|
|
namespace android::nn
|
|
{
|
|
|
|
std::vector<SharedDevice> getDevices()
|
|
{
|
|
return { std::make_shared<armnn_driver::ArmnnDriver>(DriverOptions()) };
|
|
}
|
|
|
|
} // namespace android::nn
|