Skip to content
Snippets Groups Projects
Unverified Commit 4ecd123f authored by Maxim Bonnaerens's avatar Maxim Bonnaerens Committed by GitHub
Browse files

Soft limit cannot exceed hard limit (#2209)

parent 51df8a9b
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,9 @@ if platform.system() != 'Windows':
# https://github.com/pytorch/pytorch/issues/973
import resource
rlimit = resource.getrlimit(resource.RLIMIT_NOFILE)
resource.setrlimit(resource.RLIMIT_NOFILE, (4096, rlimit[1]))
hard_limit = rlimit[1]
soft_limit = min(4096, hard_limit)
resource.setrlimit(resource.RLIMIT_NOFILE, (soft_limit, hard_limit))
def build_dataloader(dataset,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment