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()13std::vector<SharedDevice> getDevices() 14 { 15 return { std::make_shared<armnn_driver::ArmnnDriver>(DriverOptions()) }; 16 } 17 18 } // namespace android::nn 19