-
Notifications
You must be signed in to change notification settings - Fork 247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug fix when torch.load mmap=True #219
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think you actually have to check type here, but willing to be wrong
build/builder.py
Outdated
path = builder_args.checkpoint_path | ||
if isinstance(builder_args.checkpoint_path, Path): | ||
path = str(path) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
path = builder_args.checkpoint_path | |
if isinstance(builder_args.checkpoint_path, Path): | |
path = str(path) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if isinstance(path, Path):
Also I thought that str is demo_potent, so you might just write
path = str(builder_args.checkpoint_path)
15d7834
to
754bca6
Compare
Currently causing this error:
https://www.internalfb.com/phabricator/paste/view/P1215350825
Repro:
https://www.internalfb.com/phabricator/paste/view/P1215351085
After the PR fixes the issue
Test Plan: OSS CI