We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4158a25 commit 8a26435Copy full SHA for 8a26435
src/deepsparse/utils/data.py
@@ -243,7 +243,7 @@ def join_engine_outputs(
243
244
This is the opposite of `split_engine_inputs` and is meant to be used in tandem.
245
"""
246
- assert all(isinstance(item, List) for item in batch_outputs)
+ assert all(isinstance(item, (List, Tuple)) for item in batch_outputs)
247
248
candidate_output = list(map(numpy.concatenate, zip(*batch_outputs)))
249
0 commit comments