summaryrefslogtreecommitdiff
path: root/runtime/onert/core/src/ir/operation/Pack.cc
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/onert/core/src/ir/operation/Pack.cc')
-rw-r--r--runtime/onert/core/src/ir/operation/Pack.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/onert/core/src/ir/operation/Pack.cc b/runtime/onert/core/src/ir/operation/Pack.cc
index f0908a2c6..00feadfb0 100644
--- a/runtime/onert/core/src/ir/operation/Pack.cc
+++ b/runtime/onert/core/src/ir/operation/Pack.cc
@@ -25,7 +25,7 @@ namespace operation
void Pack::accept(OperationVisitor &v) const { v.visit(*this); }
Pack::Pack(const OperandIndexSequence &inputs, const OperandIndexSequence &outputs,
const Param &param)
- : Operation{OperandConstraint::createAtLeast(3u), inputs, outputs}, _param{param}
+ : Operation{OperandConstraint::createAtLeast(1u), inputs, outputs}, _param{param}
{
}
} // namespace operation