Home
last modified time | relevance | path

Searched refs:metaModel (Results 1 – 7 of 7) sorted by relevance

/frameworks/ml/nn/runtime/test/
DTestVersionedInterfaces.cpp1115 const auto metaModel = MetaModel({}, /*strictSlicing=*/true); in TEST_F() local
1116 const auto [resultCode, supportedOperations] = kDevice->getSupportedOperations(metaModel); in TEST_F()
1132 const auto metaModel = MetaModel({}, /*strictSlicing=*/true); in TEST_F() local
1133 const auto [resultCode, supportedOperations] = kDevice->getSupportedOperations(metaModel); in TEST_F()
1149 const auto metaModel = MetaModel({}, /*strictSlicing=*/true); in TEST_F() local
1150 const auto [resultCode, supportedOperations] = kDevice->getSupportedOperations(metaModel); in TEST_F()
1166 const auto metaModel = MetaModel({}, /*strictSlicing=*/true); in TEST_F() local
1167 const auto [resultCode, supportedOperations] = kDevice->getSupportedOperations(metaModel); in TEST_F()
1316 const auto metaModel = MetaModel({}, /*strictSlicing=*/true); in TEST_F() local
1317 const auto [resultCode, supportedOperations] = kDevice->getSupportedOperations(metaModel); in TEST_F()
[all …]
/frameworks/ml/nn/runtime/
DManager.cpp72 std::vector<bool> getSupportedOperations(const MetaModel& metaModel) const override;
184 std::vector<bool> DriverDevice::getSupportedOperations(const MetaModel& metaModel) const { in getSupportedOperations()
188 std::tie(status, supportedOperations) = kInterface->getSupportedOperations(metaModel); in getSupportedOperations()
190 const Model& hidlModel = metaModel.getModel(); in getSupportedOperations()
563 std::vector<bool> getSupportedOperations(const MetaModel& metaModel) const override;
636 std::vector<bool> CpuDevice::getSupportedOperations(const MetaModel& metaModel) const { in getSupportedOperations()
637 const Model& hidlModel = metaModel.getModel(); in getSupportedOperations()
DManager.h96 virtual std::vector<bool> getSupportedOperations(const MetaModel& metaModel) const = 0;
DVersionedInterfaces.cpp961 const MetaModel& metaModel) const { in getSupportedOperations()
965 const Model& model = metaModel.getModel(); in getSupportedOperations()
1013 const auto slice12 = metaModel.getSliceV1_2(); in getSupportedOperations()
1046 const auto slice11 = metaModel.getSliceV1_1(); in getSupportedOperations()
1079 const auto slice10 = metaModel.getSliceV1_0(); in getSupportedOperations()
DVersionedInterfaces.h156 const MetaModel& metaModel) const;
DExecutionPlan.cpp1978 void initialize(const MetaModel& metaModel, std::shared_ptr<Device> device) { in initialize() argument
1979 mSupportsOperationByIndex = device->getSupportedOperations(metaModel); in initialize()
1993 const MetaModel metaModel(makeHidlModel(), DeviceManager::get()->strictSlicing()); in findBestDeviceForEachOperation() local
1998 canDo[deviceIndex].initialize(metaModel, devices[deviceIndex]); in findBestDeviceForEachOperation()
DNeuralNetworks.cpp740 const MetaModel metaModel(hidlModel, DeviceManager::get()->strictSlicing()); in ANeuralNetworksModel_getSupportedOperationsForDevices() local
741 const std::vector<bool> supportsByDevice = d->getSupportedOperations(metaModel); in ANeuralNetworksModel_getSupportedOperationsForDevices()