Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions tests/python/unittest/test_gluon_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,12 @@ def test_multi_worker_dataloader_release_pool():
if os.name == 'nt':
print('Skip for windows since spawn on windows is too expensive.')
return

from sys import platform
if platform == 'darwin':
print('Skip for MacOS due to https://github.com/apache/incubator-mxnet/issues/17782')
return

for _ in range(10):
A = np.random.rand(999, 2000)
D = mx.gluon.data.DataLoader(A, batch_size=8, num_workers=8)
Expand Down