summaryrefslogtreecommitdiff
path: root/nn/runtime/test/TestExtensions.cpp
diff options
context:
space:
mode:
authorLev Proleev <levp@google.com>2019-10-10 13:53:59 +0000
committerLev Proleev <levp@google.com>2019-10-10 13:53:59 +0000
commit0ec8dcbd91234d168aa3856f57481c35f1c14b9e (patch)
treeed88d7f40e3446fa9b835adcebcfdb3da29b6a0b /nn/runtime/test/TestExtensions.cpp
parentaf88effce1b911743d562f5490af2300c54f2349 (diff)
downloadml-0ec8dcbd91234d168aa3856f57481c35f1c14b9e.tar.gz
Revert "Add HAL version 1.3 and add TENSOR_QUANT8_ASYMM_SIGNED OperandType"
This reverts commit af88effce1b911743d562f5490af2300c54f2349. Reason for revert: the topic breaks git_qt-dev-plus-aosp Change-Id: Iddfcffb76af61fb20d749902ddf9c960e211c69d
Diffstat (limited to 'nn/runtime/test/TestExtensions.cpp')
-rw-r--r--nn/runtime/test/TestExtensions.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/nn/runtime/test/TestExtensions.cpp b/nn/runtime/test/TestExtensions.cpp
index fd9f17db7..6fe592710 100644
--- a/nn/runtime/test/TestExtensions.cpp
+++ b/nn/runtime/test/TestExtensions.cpp
@@ -16,9 +16,6 @@
#include <gtest/gtest.h>
-#include <string>
-#include <vector>
-
#include "HalInterfaces.h"
#include "Manager.h"
#include "NeuralNetworks.h"
@@ -53,12 +50,12 @@ class TestDriver : public SampleDriver {
return Void();
}
- Return<void> getCapabilities_1_3(getCapabilities_1_3_cb cb) override {
+ Return<void> getCapabilities_1_2(getCapabilities_1_2_cb cb) override {
cb(ErrorStatus::NONE, {/* Dummy zero-filled capabilities. */});
return Void();
}
- Return<void> getSupportedOperations_1_3(const Model&, getSupportedOperations_cb) override {
+ Return<void> getSupportedOperations_1_2(const Model&, getSupportedOperations_cb) override {
CHECK(false) << "not implemented";
return Void();
}