Commit 448a5452 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #16793 from anton-potapov:kw_fixes_bitwise_op_on_bools

parents 4cebef90 3ba6b419
...@@ -737,7 +737,7 @@ void cv::gimpl::GStreamingExecutor::setSource(GRunArgs &&ins) ...@@ -737,7 +737,7 @@ void cv::gimpl::GStreamingExecutor::setSource(GRunArgs &&ins)
for (auto& op : m_ops) for (auto& op : m_ops)
{ {
op.isl_exec = m_gim.metadata(op.nh).get<IslandExec>().object; op.isl_exec = m_gim.metadata(op.nh).get<IslandExec>().object;
is_reshapable &= op.isl_exec->canReshape(); is_reshapable = is_reshapable && op.isl_exec->canReshape();
} }
update_int_metas(); // (7) update_int_metas(); // (7)
m_reshapable = util::make_optional(is_reshapable); m_reshapable = util::make_optional(is_reshapable);
......
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