Skip to content

Commit

Permalink
fix (#2145)
Browse files Browse the repository at this point in the history
  • Loading branch information
SunMarc authored Nov 13, 2023
1 parent 15458c5 commit a0a16e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/accelerate/utils/other.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def clean_state_dict_for_safetensors(state_dict: dict):
logger.warning(
f"Removed shared tensor {warn_names} while saving. This should be OK, but check by verifying that you don't receive any warning while reloading",
)
state_dict = {k: v.contiguous() for k, v in state_dict.items()}
state_dict = {k: v.contiguous() if isinstance(v, torch.Tensor) else v for k, v in state_dict.items()}
return state_dict


Expand Down

0 comments on commit a0a16e1

Please sign in to comment.