summaryrefslogtreecommitdiff
path: root/nn/runtime/test/TestExtensions.cpp
diff options
context:
space:
mode:
authorSlava Shklyaev <slavash@google.com>2019-01-23 16:09:51 +0000
committerXusong Wang <xusongw@google.com>2019-01-30 13:21:07 -0800
commitbecd62cbd003798d921d7f5fa8eb43d9ca13dd7e (patch)
tree46ffaa5ce67c686aaa218b3f5caf0980fd36d36c /nn/runtime/test/TestExtensions.cpp
parent265ac854a19a269e52212faee6a9529814e1e9f5 (diff)
downloadml-becd62cbd003798d921d7f5fa8eb43d9ca13dd7e.tar.gz
Add Extensions API
Please see the commit message of change Ia9b99015eec7a48bbf969cbe503862271f09adca for motivation. Bug: 118604960 Bug: 118606929 Test: NeuralNetworksTest_static Change-Id: I2703b963f040a846889554888ddd984eac6b6c08 Merged-In: I2703b963f040a846889554888ddd984eac6b6c08 (cherry picked from commit e86a07b8843c8c2c4daba891841fe34aa867bc58)
Diffstat (limited to 'nn/runtime/test/TestExtensions.cpp')
-rw-r--r--nn/runtime/test/TestExtensions.cpp113
1 files changed, 113 insertions, 0 deletions
diff --git a/nn/runtime/test/TestExtensions.cpp b/nn/runtime/test/TestExtensions.cpp
new file mode 100644
index 000000000..b90380590
--- /dev/null
+++ b/nn/runtime/test/TestExtensions.cpp
@@ -0,0 +1,113 @@
+/*
+ * Copyright (C) 2019 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <gtest/gtest.h>
+
+#include "HalInterfaces.h"
+#include "Manager.h"
+#include "NeuralNetworks.h"
+#include "NeuralNetworksExtensions.h"
+#include "SampleDriver.h"
+
+namespace {
+
+using DeviceManager = ::android::nn::DeviceManager;
+using SampleDriver = ::android::nn::sample_driver::SampleDriver;
+
+const char* kTestDriverName = "extensions-test-driver";
+const char* kTestExtension1 = "vendor.test.one";
+const char* kTestExtension2 = "vendor.test.two";
+const char* kTestExtension3 = "vendor.test.three";
+
+class TestDriver : public SampleDriver {
+ public:
+ TestDriver() : SampleDriver(kTestDriverName) {}
+ ~TestDriver() override {}
+
+ Return<void> getSupportedExtensions(getSupportedExtensions_cb cb) override {
+ cb(ErrorStatus::NONE, {
+ {.name = kTestExtension1},
+ {.name = kTestExtension2},
+ {.name = kTestExtension3},
+ });
+ return Void();
+ }
+
+ Return<void> getCapabilities_1_1(getCapabilities_1_1_cb cb) override {
+ cb(ErrorStatus::NONE, {/* Dummy zero-filled capabilities. */});
+ return Void();
+ }
+
+ Return<void> getSupportedOperations_1_2(const Model&, getSupportedOperations_cb) override {
+ CHECK(false) << "not implemented";
+ return Void();
+ }
+};
+
+class ExtensionsTest : public ::testing::Test {
+ protected:
+ virtual void SetUp() {
+ // This is needed before we have the CPU fallback path being treated as a Device.
+ // TODO(miaowang): remove once b/72506261 is fixed.
+ if (DeviceManager::get()->getUseCpuOnly()) {
+ GTEST_SKIP();
+ }
+
+ DeviceManager::get()->forTest_registerDevice(kTestDriverName, new TestDriver());
+ mDevice = getDeviceByName(kTestDriverName);
+ ASSERT_NE(mDevice, nullptr);
+ }
+
+ virtual void TearDown() { DeviceManager::get()->forTest_reInitializeDeviceList(); }
+
+ ANeuralNetworksDevice* getDeviceByName(const std::string& name) {
+ ANeuralNetworksDevice* result = nullptr;
+ uint32_t numDevices = 0;
+ EXPECT_EQ(ANeuralNetworks_getDeviceCount(&numDevices), ANEURALNETWORKS_NO_ERROR);
+ EXPECT_GE(numDevices, 1u);
+ for (uint32_t i = 0; i < numDevices; i++) {
+ ANeuralNetworksDevice* device = nullptr;
+ EXPECT_EQ(ANeuralNetworks_getDevice(i, &device), ANEURALNETWORKS_NO_ERROR);
+ const char* buffer = nullptr;
+ EXPECT_EQ(ANeuralNetworksDevice_getName(device, &buffer), ANEURALNETWORKS_NO_ERROR);
+ if (name.compare(buffer) == 0) {
+ EXPECT_EQ(result, nullptr) << "multiple devices named " << name;
+ result = device;
+ }
+ }
+ return result;
+ }
+
+ bool testDriverSupportsExtension(const char* extensionName) {
+ bool result;
+ EXPECT_EQ(ANeuralNetworksDevice_getExtensionSupport(mDevice, extensionName, &result),
+ ANEURALNETWORKS_NO_ERROR);
+ return result;
+ }
+
+ private:
+ ANeuralNetworksDevice* mDevice;
+};
+
+TEST_F(ExtensionsTest, DeviceReportsSupportedExtensions) {
+ EXPECT_TRUE(testDriverSupportsExtension(kTestExtension1));
+ EXPECT_FALSE(testDriverSupportsExtension("vendor.test.unknown"));
+ EXPECT_FALSE(testDriverSupportsExtension("asdfasdfas"));
+ EXPECT_TRUE(testDriverSupportsExtension(kTestExtension2));
+ EXPECT_TRUE(testDriverSupportsExtension(kTestExtension3));
+}
+
+} // namespace