summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorChunseok Lee <chunseok.lee@samsung.com>2020-12-14 14:43:21 +0900
committerChunseok Lee <chunseok.lee@samsung.com>2020-12-14 14:43:21 +0900
commit6ea13af5257155ff993c205cf997b870cc627f73 (patch)
tree9a6d1b3cc2480c4482205d00f200e214cce01c55 /runtime
parent12d88feea8573f8490629cf62fc342b152e57d65 (diff)
downloadnnfw-6ea13af5257155ff993c205cf997b870cc627f73.tar.gz
nnfw-6ea13af5257155ff993c205cf997b870cc627f73.tar.bz2
nnfw-6ea13af5257155ff993c205cf997b870cc627f73.zip
Imported Upstream version 1.11.1upstream/1.11.1
Diffstat (limited to 'runtime')
-rw-r--r--runtime/contrib/android/api/build.gradle2
-rw-r--r--runtime/onert/api/include/nnfw_version.h2
-rw-r--r--runtime/onert/core/src/exec/DynamicShapeInferer.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/runtime/contrib/android/api/build.gradle b/runtime/contrib/android/api/build.gradle
index 5427878e1..d383b2d1c 100644
--- a/runtime/contrib/android/api/build.gradle
+++ b/runtime/contrib/android/api/build.gradle
@@ -8,7 +8,7 @@ android {
minSdkVersion 26
targetSdkVersion 29
versionCode 1
- versionName "1.11.0"
+ versionName "1.11.1"
externalNativeBuild {
ndkBuild {
diff --git a/runtime/onert/api/include/nnfw_version.h b/runtime/onert/api/include/nnfw_version.h
index 4044cb657..31c3890e3 100644
--- a/runtime/onert/api/include/nnfw_version.h
+++ b/runtime/onert/api/include/nnfw_version.h
@@ -21,6 +21,6 @@
* NNFW_VERSION is a uint32 value representing nnfw runtime version
* in 0xMMmmmmPP, where MM = major, mmmm = minor, PP = patch
*/
-#define NNFW_VERSION 0x01000b00
+#define NNFW_VERSION 0x01000b01
#endif // __NNFW_VERSION_H__
diff --git a/runtime/onert/core/src/exec/DynamicShapeInferer.cc b/runtime/onert/core/src/exec/DynamicShapeInferer.cc
index 5a40bba78..1666d3f08 100644
--- a/runtime/onert/core/src/exec/DynamicShapeInferer.cc
+++ b/runtime/onert/core/src/exec/DynamicShapeInferer.cc
@@ -172,7 +172,7 @@ void DynamicShapeInferer::visit(const ir::operation::BCQGather &op)
const auto indices_idx{op.getInputs().at(ir::operation::BCQGather::Input::INDICES)};
const auto &indices = _tensor_registry->getITensor(indices_idx);
- const auto input_binary_idx{op.getInputs().at(ir::operation::BCQGather::Input::INDICES)};
+ const auto input_binary_idx{op.getInputs().at(ir::operation::BCQGather::Input::INPUT_BINARY)};
const auto &input_binary = _tensor_registry->getITensor(input_binary_idx);
const auto cluster_idx{op.getInputs().at(ir::operation::BCQGather::Input::INPUT_CLUSTERS)};