summaryrefslogtreecommitdiff
path: root/nn/runtime/Manager.cpp
diff options
context:
space:
mode:
authorMiao Wang <miaowang@google.com>2017-09-13 15:53:28 -0700
committerMiao Wang <miaowang@google.com>2017-09-13 16:44:17 -0700
commit66d56404cdfab9ab8aa79d4bda83be3832a3aff9 (patch)
treee4c76c7d1e732e473dde8b3e6b040c93b365e61b /nn/runtime/Manager.cpp
parent6f19705c82fcea2633b35ff414f74f5fd1c2d212 (diff)
downloadml-66d56404cdfab9ab8aa79d4bda83be3832a3aff9.tar.gz
Make the enums pass as int32_t, and make offset and length size_t.
- Also removes fp16 perf and bootup time info. Bug: 63905942 Test: NeuralNetworksTest Change-Id: I1f722fed06a4227eb5f204eb51f7728fe749f5ec
Diffstat (limited to 'nn/runtime/Manager.cpp')
-rw-r--r--nn/runtime/Manager.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/nn/runtime/Manager.cpp b/nn/runtime/Manager.cpp
index f6caf6dd5..7968c6e90 100644
--- a/nn/runtime/Manager.cpp
+++ b/nn/runtime/Manager.cpp
@@ -33,13 +33,11 @@ void Device::initialize() {
if (status != ErrorStatus::NONE) {
LOG(ERROR) << "IDevice::getCapabilities returned the error " << toString(status);
}
- LOG(DEBUG) << "Capab " << capabilities.float16Performance.execTime;
LOG(DEBUG) << "Capab " << capabilities.float32Performance.execTime;
+ LOG(DEBUG) << "Capab " << capabilities.quantized8Performance.execTime;
/*
supportedOperationTypes = capabilities.supportedOperationTypes;
cachesCompilation = capabilities.cachesCompilation;
- bootupTime = capabilities.bootupTime;
- float16Performance = capabilities.float16Performance;
float32Performance = capabilities.float32Performance;
quantized8Performance = capabilities.quantized8Performance;
*/