author = 'Samsung Research & contributors'
# The full version, including alpha/beta/rc tags
-release = '1.11.0'
+release = '1.11.1'
# -- General configuration ---------------------------------------------------
--- /dev/null
+# Release Note 1.11.1
+
+## ONE Runtime
+
+### Hot Fixes
+
+- Fix segfault due to the wrong BCQGather DynamicShapeInferer's behavior
Name: nnfw
Summary: nnfw
-Version: 1.11.0
+Version: 1.11.1
Release: 1
Group: Development
License: Apache-2.0 and MIT and BSD-2-Clause
minSdkVersion 26
targetSdkVersion 29
versionCode 1
- versionName "1.11.0"
+ versionName "1.11.1"
externalNativeBuild {
ndkBuild {
* 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__
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)};