mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-21 05:34:18 +08:00
See https://github.com/pytorch/pytorch/pull/129751#issue-2380881501. Most changes are auto-generated by linter. You can review these PRs via: ```bash git diff --ignore-all-space --ignore-blank-lines HEAD~1 ``` Pull Request resolved: https://github.com/pytorch/pytorch/pull/129754 Approved by: https://github.com/ezyang
38 lines
1.0 KiB
Python
38 lines
1.0 KiB
Python
from pyarkbench import Benchmark, default_args, Timer
|
|
|
|
import torch
|
|
|
|
|
|
use_new = True
|
|
|
|
|
|
class Basic(Benchmark):
|
|
def benchmark(self):
|
|
x = [torch.ones(200, 200) for i in range(30)]
|
|
with Timer() as big1:
|
|
torch.save(x, "big_tensor.zip", _use_new_zipfile_serialization=use_new)
|
|
|
|
with Timer() as big2:
|
|
v = torch.load("big_tensor.zip")
|
|
|
|
x = [torch.ones(10, 10) for i in range(200)]
|
|
with Timer() as small1:
|
|
torch.save(x, "small_tensor.zip", _use_new_zipfile_serialization=use_new)
|
|
|
|
with Timer() as small2:
|
|
v = torch.load("small_tensor.zip")
|
|
|
|
return {
|
|
"Big Tensors Save": big1.ms_duration,
|
|
"Big Tensors Load": big2.ms_duration,
|
|
"Small Tensors Save": small1.ms_duration,
|
|
"Small Tensors Load": small2.ms_duration,
|
|
}
|
|
|
|
|
|
if __name__ == "__main__":
|
|
bench = Basic(*default_args.bench())
|
|
print("Use zipfile serialization:", use_new)
|
|
results = bench.run()
|
|
bench.print_stats(results, stats=["mean", "median"])
|