blob: 14556fd57334e27ae6916c27382d6e73f91e9ef7 [file] [log] [blame]
Sadik Armagan8f397a12022-06-17 15:38:22 +01001//
2// Copyright © 2022 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#include "canonical/ArmnnDriver.hpp"
7
8#include <nnapi/IDevice.h>
9
10namespace android::nn
11{
12
13std::vector<SharedDevice> getDevices()
14{
15 return { std::make_shared<armnn_driver::ArmnnDriver>(DriverOptions()) };
16}
17
18} // namespace android::nn