Skip to content

Commit af379d8

Browse files
committed
Add tqdm
1 parent 94761fb commit af379d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def test_share_memory_shim():
7474
memory_pool_block_count=num_worker,
7575
)
7676
with load_with_workers(loader, range(n), num_worker) as generator:
77-
for x, y in generator:
77+
for x, y in tqdm.tqdm(generator):
7878
assert x.numpy().shape == data_size
7979
assert y.numpy().shape == label_size
8080
count += 1

0 commit comments

Comments
 (0)