projects
/
platform
/
core
/
multimedia
/
inference-engine-armnn.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
153fcae
)
Convert Signed64 type to internal one correctly
tizen_hand_gesture
author
Inki Dae
<inki.dae@samsung.com>
Fri, 21 Aug 2020 00:19:52 +0000
(09:19 +0900)
committer
Inki Dae
<inki.dae@samsung.com>
Fri, 21 Aug 2020 00:19:52 +0000
(09:19 +0900)
Change-Id: I789c0483f65262bc7cba896cc2eee0382cb480f8
Signed-off-by: Inki Dae <inki.dae@samsung.com>
src/inference_engine_armnn.cpp
patch
|
blob
|
history
diff --git
a/src/inference_engine_armnn.cpp
b/src/inference_engine_armnn.cpp
index db9e4bd783b9200533b4ec901a156d00c43c429e..a1bbcd68f56a25610e5f6c3dab74b2da5336e8a5 100644
(file)
--- a/
src/inference_engine_armnn.cpp
+++ b/
src/inference_engine_armnn.cpp
@@
-79,7
+79,7
@@
namespace ARMNNImpl
data_type = INFERENCE_TENSOR_DATA_TYPE_UINT8;
break;
case armnn::DataType::Signed64:
- data_type = INFERENCE_TENSOR_DATA_TYPE_
U
INT64;
+ data_type = INFERENCE_TENSOR_DATA_TYPE_INT64;
break;
default:
LOGE("Invalid Input tensor type so it will use float32 in default.");