xref: /aosp_15_r20/external/armnn/shim/sl/support_library_service.cpp (revision 89c4ff92f2867872bb9e2354d150bf0c8c502810)
1 //
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 
10 namespace android::nn
11 {
12 
getDevices()13 std::vector<SharedDevice> getDevices()
14 {
15     return { std::make_shared<armnn_driver::ArmnnDriver>(DriverOptions()) };
16 }
17 
18 }  // namespace android::nn
19