Skip to content

Instantly share code, notes, and snippets.

@Narsil
Created November 10, 2022 09:44
Show Gist options
  • Save Narsil/156b3da253e36a0fe2c4643c1a8fbdd1 to your computer and use it in GitHub Desktop.
Save Narsil/156b3da253e36a0fe2c4643c1a8fbdd1 to your computer and use it in GitHub Desktop.
Compare Pytorch speed vs Safetensors
import datetime
from huggingface_hub import hf_hub_download
from safetensors.torch import load_file
import torch
device = "cpu"
sf_filename = hf_hub_download("gpt2", filename="model.safetensors")
pt_filename = hf_hub_download("gpt2", filename="pytorch_model.bin")
start = datetime.datetime.now()
weights = load_file(sf_filename, device=device)
print(f"Loaded safetensors {datetime.datetime.now() - start}")
start = datetime.datetime.now()
weights = torch.load(pt_filename, map_location=device)
print(f"Loaded pytorch {datetime.datetime.now() - start}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment