We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd9d5cb commit ec6662cCopy full SHA for ec6662c
benchmarks/decoders/benchmark_decoders_library.py
@@ -496,7 +496,8 @@ def run_batch_using_threads(
496
for _ in range(batch_parameters.batch_size):
497
futures.append(executor.submit(function, *args))
498
for f in futures:
499
- assert f.result()
+ # TODO: Add a stronger check here based on arguments to the function.
500
+ assert len(f.result()) > 0
501
executor.shutdown(wait=True)
502
503
0 commit comments