summaryrefslogtreecommitdiff
path: root/runtime/onert
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/onert')
-rw-r--r--runtime/onert/api/include/nnfw_version.h2
-rw-r--r--runtime/onert/core/src/exec/DynamicShapeInferer.cc2
2 files changed, 2 insertions, 2 deletions
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)};