aboutsummaryrefslogtreecommitdiff
path: root/shim/sl/support_library_service.cpp
blob: 14556fd57334e27ae6916c27382d6e73f91e9ef7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// 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