Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 795 Bytes

File metadata and controls

27 lines (20 loc) · 795 Bytes

tensor_checkpoint Benchmarks

The tensor_checkpoint crate provides atomic snapshot/restore with retention policies and confirmation handling.

Overview

Checkpoint benchmarks measure snapshot creation, rollback, listing, and retention enforcement across varying store sizes.

Expected Performance Characteristics

Operation Complexity Notes
Create checkpoint O(keys) Serializes full store state
Rollback O(keys) Restores store from snapshot
List checkpoints O(n) Reads checkpoint metadata
Delete checkpoint O(1) Removes blob entry
Retention enforce O(excess) Deletes oldest beyond limit

Benchmarking Checkpoint Operations

cargo bench --package tensor_checkpoint