_export_full_state silently skips tensors that fail to clone, potentially losing draft weights
The _export_full_state function catches all exceptions when cloning tensors to CPU and silently skips them. While this is intentional for KV-cache region-tied buffers that become unclonable after the region is paused, the stash happens BEFORE any region is paused (line 200-208). At that point, all tensors should be clonable. If a tensor fails to clone for any other reason (e.g., OOM, device mismatch, corrupted tensor), it is silently dropped from the stash with only an info log. This means the draft model could be partially restored after resume, leading to subtle correctness issues. The function should distinguish between expected failures (region-tied tensors that are genuinely unclonable) and unexpected failures, or at minimum warn at a higher severity when tensors are skipped during the pre-pause stash phase.