Skip to content
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

Merged
merged 1 commit into from
Apr 16, 2024
Merged

Bug fix when torch.load mmap=True #219

merged 1 commit into from
Apr 16, 2024

Conversation

mergennachin
Copy link
Contributor

@mergennachin mergennachin commented Apr 16, 2024

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

@facebook-github-bot facebook-github-bot added the CLA Signed This label is managed by the Meta Open Source bot. label Apr 16, 2024
@mergennachin mergennachin requested a review from mikekgfb April 16, 2024 18:32
@mergennachin mergennachin changed the title Currently causing this error: Bug fix: load mmap=True Apr 16, 2024
@mergennachin mergennachin changed the title Bug fix: load mmap=True Bug fix when torch.load mmap=True Apr 16, 2024
Copy link
Member

@seemethere seemethere left a 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
Comment on lines 209 to 211
path = builder_args.checkpoint_path
if isinstance(builder_args.checkpoint_path, Path):
path = str(path)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
path = builder_args.checkpoint_path
if isinstance(builder_args.checkpoint_path, Path):
path = str(path)

Copy link
Contributor

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)

@mergennachin mergennachin merged commit 32fdb5a into main Apr 16, 2024
7 of 14 checks passed
@mergennachin mergennachin deleted the mmap_failure branch April 16, 2024 18:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CLA Signed This label is managed by the Meta Open Source bot.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants