Commit b089622b authored by Ted Themistokleous's avatar Ted Themistokleous
Browse files

Remove assert

parent 766c600f
...@@ -66,12 +66,6 @@ struct parse_splitToSequence : op_parser<parse_splitToSequence> ...@@ -66,12 +66,6 @@ struct parse_splitToSequence : op_parser<parse_splitToSequence>
const auto split_shape = s.get_shape(); const auto split_shape = s.get_shape();
// check all split args > 1
for(const auto split_arg : split_shape.lens())
{
assert(split_arg > 0);
}
if(split_shape.scalar()) if(split_shape.scalar())
{ {
// Split equally along one axis based on desired split // Split equally along one axis based on desired split
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment