Skip to content

Commit f23db79

Browse files
committed
Fix batch size propagation.
Signed-off-by: Michal Zientkiewicz <michalz@nvidia.com>
1 parent 2c866f1 commit f23db79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dali/python/nvidia/dali/experimental/dali2/_op_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ def _infer_device():
475475
)
476476

477477
# Call the operator (the result is an Invocation object)
478-
return op_inst(*inputs, **call_args)
478+
return op_inst(*inputs, batch_size=batch_size, **call_args)
479479

480480
function = makefun.create_function(header, fn_call)
481481
function.op_class = op

0 commit comments

Comments
 (0)