Skip to content

Add SmartDiskCache module with hash-based persistent caching - #49

Open
BitcrushedHeart wants to merge 70 commits into
Nerogar:masterfrom
BitcrushedHeart:SmartCache
Open

Add SmartDiskCache module with hash-based persistent caching#49
BitcrushedHeart wants to merge 70 commits into
Nerogar:masterfrom
BitcrushedHeart:SmartCache

Conversation

@BitcrushedHeart

@BitcrushedHeart BitcrushedHeart commented Apr 6, 2026

Copy link
Copy Markdown
Contributor

SmartDiskCache - Hash-Based Persistent Caching

What This Is

A replacement for 'DiskCache' that makes caching persistent and content-addressed rather than ephemeral. Adding one image to a 100k dataset caches one file, not 100k. Editing one caption recaches one text embedding, not all of them. Moving files between concepts (same content, different path) reuses existing cache via hash matching. Switching between training configs that differ only in non-cache-relevant settings never triggers recaching.

The cache becomes a content-addressed store that grows over time and only rebuilds what's genuinely stale.

How It Works

Hashing

Every source file gets an xxhash64 hash of its contents. xxhash64 is faster than MD5/SHA-256 and has excellent collision resistance for non-cryptographic purposes. The full 64-bit hash is used internally for comparison. Cache filenames use a 12 hex char truncation (48 bits, ~281 trillion possible values) to keep paths manageable.

Image cache files: '{hash12}{resolution}{variation}.pt'
Text cache files: '{hash12}_{variation}.pt'

Validation Flow

Per-file validation runs for each file needed in the current epoch:

  1. EXIST: Does this file have a cache entry for the current modeltype? If not, hash it and check for dedup (same content elsewhere), or build new cache.
  2. EXIST: Does the expected '.pt' file exist on disk? If not, rebuild.
  3. MTIME: Has mtime changed since the cache entry was written? If not, accept (fast path - most files won't have changed).
  4. HASH: Recalculate xxhash64. If hash unchanged (file touched/copied but content identical), accept and update mtime. If hash changed, rebuild.

The mtime check is the fast path. Hash computation only happens when mtime changes. This means validation of a 100k dataset where nothing changed is essentially free - it's 100k 'stat()' calls, no file reads.

Cache Index

Each cache directory ('image/' and 'text/') maintains a 'cache.json' index with per-file entries (filename, hash, mtime, modeltype, resolution, cache_file, cache_version) and a 'hash_index' mapping hashes to lists of filepaths for dedup lookups. The index uses atomic writes (write to '.tmp', backup to '.bak', rename) with crash recovery on startup.

Deduplication

When a new file is encountered, its hash is checked against the 'hash_index'. If a match exists with the same modeltype and resolution, the existing cache entry is reused - no encoding needed. This handles the common case of the same image appearing in multiple concepts.

When one copy of a deduplicated file is edited, it gets a new hash and new cache files. The unedited copy still points to the old cache entry. When all references to a hash are gone, the cache files become eligible for garbage collection.

Sourceless Training

If all necessary training data is embedded in the '.pt' cache files, users can train from cache alone without the source images/text files. A 'sourceless_training' toggle in the config enables this. When active, the dataloader skips file enumeration, loading, and augmentation modules entirely - the pipeline collapses to just '[cache_modules, output_modules]'.

On startup in sourceless mode, 'SmartDiskCache' validates that all cache entries have sufficient 'cache_version', correct 'modeltype', and existing '.pt' files. Clear errors are raised if anything is missing.

This enables dataset sharing without distributing original files. Cached latents can't be decoded back to pixel-space images without the VAE decoder, so this is a one-way transform - useful for privacy-sensitive datasets.

Garbage Collection

A "Clean Cache" button in the UI identifies orphaned cache files (source file no longer exists, or '.pt' files with no 'cache.json' entry) and shows a preview with file counts and sizes before deleting anything. Dedup-shared '.pt' files are preserved as long as at least one source file still references them.

Sample Selection Fix

The SAMPLES balancing strategy now shuffles the full file pool then takes N, rather than taking the first N then shuffling. This gives genuinely random sampling across epochs when using large datasets with sample limits.

What Changed

New File

'src/mgds/pipelineModules/SmartDiskCache.py' - the entire module. 'PipelineModule' + 'SingleVariationRandomAccessPipelineModule', drop-in replacement for 'DiskCache' with additional constructor params ('modeltype', 'source_path_in_name', 'sourceless').

Testing

Test branch: 'SmartcacheTests' - 69 tests covering hashing, cache validation flow, deduplication, atomic writes/crash recovery, garbage collection, sourceless training, sample selection, DiskCache regression, and issue regression scenarios.

Why not replace DiskCache?

While mgds is built for OneTrainer, I have no idea what else could be using mgds - so this allows existing repos to continue using DIskCache, even as OneTrainer shifts to SmartDiskCache - if desired we could raise a depreciation warning when DiskCache is used if this is merged.


Closes #41

Introduces SmartDiskCache as a drop-in replacement for DiskCache with
per-file xxhash64 content validation, content-addressed cache filenames,
a cache.json index with deduplication support, atomic writes with crash
recovery, garbage collection, sourceless training mode, and a sample
selection fix for the SAMPLES balancing strategy.
- rebuild validation status now cleans hash_index before re-queuing,
  matching the behavior of content_changed/resolution_changed/missing_pt
- Remove unused all_input_files set from __refresh_cache
- Store loss_weight, type, name, path, seed from concept dict in .pt
  files at build time (follows existing __cache_version pattern)
- In sourceless mode, reconstruct concept dict from stored metadata
  so OutputPipelineModule can resolve concept.loss_weight
- Add concept to sourceless get_outputs() so pipeline resolution
  finds SmartDiskCache instead of walking back to ConceptPipelineModule
- Bump CACHE_VERSION to 2 (forces cache rebuild for sourceless mode,
  normal mode unaffected)
Call before_cache_fun before falling through to upstream pipeline
modules in get_item, so the model is on the correct device when
re-encoding uncached items at training time.
The real bug was in OneTrainer passing 'prompt_path' (nonexistent)
as source_path_in_name for the text cache, causing every text lookup
to miss. With the correct key ('image_path'), the fallback path
should never be reached after a fresh cache build.
- Add .pt existence check on mtime fast-path to prevent FileNotFoundError
- Replace shutil.move with os.replace for atomic writes on Windows
- Rewrite _load_cache_index with 3-stage fallback (cache.json → .tmp → .bak)
- Extend _index_lock to cover full save operation (write + backup + rename)
- Switch to time-based flush interval (30s) with compact JSON for intermediate flushes
- Cache os.path.realpath once in __init__, use _real_pt_path consistently
- Cache source paths at epoch start, eliminate per-item pipeline traversal
- Load aggregate data into RAM at epoch start, serve from memory in get_item
Shows tqdm progress during the validation loop and aggregate cache
loading so the terminal doesn't appear frozen between phases.
The generator expression caused as_completed to submit futures lazily,
one at a time, preventing the executor from pipelining the next item
while the current one's I/O completes.
BitcrushedHeart and others added 16 commits April 6, 2026 16:20
On repeat runs where nothing changed, cache validation was taking 20+
minutes due to stat-ing every source file individually. This adds a
fast path that checks directory mtimes and spot-checks a sample of
entries, reducing validation to under a second for unchanged datasets.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Cache validation was running at the start of every epoch, even when the
same filepaths were being delivered (which is the common case since users
configure repeats rather than custom samples_per_epoch). On larger
datasets the per-file validation loop was noticeable at each epoch
boundary despite no actual dataset change.

Track validated filepaths in a per-process set and short-circuit
_reshuffle_and_prepare when every required path is already in that set
and still present in the on-disk index. Fall through to the existing
fast-validate / full-validate paths otherwise.

Trade-off: within-run edits to source files are no longer detected.
Cross-run detection (via cache.json + fast validation) is unchanged.
Training against a mutating dataset within a single process was never
well-defined anyway.
Fix device mismatch on cache miss during training. Call
before_cache_fun before falling through to upstream pipeline
modules in get_item, so the model is on the correct device
when re-encoding uncached items at training time.

The fallback is reachable whenever individual files fail to
cache (build_failed / missing / hash_failed), so the band-aid
from c22be2f was removed prematurely in 28795b1.
Persist a zero-tensor sentinel during cache validation using any
successful entry as a shape template. On cache miss, return the
sentinel directly instead of re-running upstream encoders.

Rationale: files that fail to cache (build_failed / missing /
hash_failed) leave gaps in the index. At training time the text
encoder is on the temp device (CPU) and bringing it back to GPU
to re-encode a single sample risks both a device mismatch and an
OOM since the main model is already on GPU.

The before_cache_fun re-encode path is kept as a last-resort
fallback for the edge case where no valid entries exist yet
(e.g. caching interrupted before any file succeeded).
When the env var is set, skip per-file mtime/hash/.pt-existence checks
and the upstream _get_resolution_string call (which can trigger per-image
I/O on slow cloud storage). Filepaths already in the on-disk index are
trusted; only missing filepaths are cached. Modeltype mismatch still
raises to prevent silent cross-model cache reuse.

Driven by the --skip-cache-validation CLI flag in OneTrainer/scripts/train.py.
Toggling settings like masked_training between runs adds keys (e.g.
'latent_mask') to split_names/aggregate_names that aren't present in
existing .pt files, so downstream readers (AspectBatchSorting et al)
crashed with KeyError instead of silently dropping the missing field.

Stamp split+aggregate names into cache.json as 'schema' so we can
detect drift on startup. When drift is found, walk every entry, run
only the missing names through the upstream pipeline, and merge them
into the existing .pt (preserving all other keys). Atomic via tmp +
os.replace, parallelised through the existing executor.

_ensure_blank_sentinel now rebuilds when the sentinel doesn't cover
all currently-required keys, and get_item borrows zero-tensors from
the sentinel for any key still missing from a per-file augmentation
failure -- no single bad entry can crash training.
Previous augment-in-place fix re-ran _get_previous_item('latent_mask',
in_index) through the upstream pipeline to backfill missing keys, then
wrote them into the existing .pt next to the already-cached
latent_image. That breaks when toggling settings adds modules to the
upstream chain (e.g. enabling masked_training pulls in
mask_augmentation_modules and changes 'mask' to be cropped alongside
'image'), which can produce a different crop_resolution than the one
stored in the cache. Result: latent_mask written at a shape that
doesn't match the cached latent_image, then collate_fn crashes with
'stack expects each tensor to be equal size' once a batch mixes
samples whose mask shapes diverged.

Switch to invalidate-and-rebuild: when schema drift is detected, drop
every entry from the index, delete the .pt files, and let the
existing build loop rebuild each entry in a single upstream pass so
all keys share the same crop_resolution and shape.

Add a SCHEMA_METHOD marker stamped into cache.json. Caches that were
schema-stamped by the prior augment-based code (schema set,
schema_method unset) are auto-invalidated on the next run so users
who already trained on shape-corrupted .pt files get a clean rebuild
without manually nuking their cache_dir.
Augmenting a cache built under different settings (e.g. masked_training
toggled, which adds mask_augmentation modules to the upstream chain)
re-runs the upstream pipeline for the missing names. The fresh run
can produce a different crop_resolution than the one stored alongside
latent_image, so the augmented latent_mask ends up at a different
spatial shape -- collate_fn then crashes with 'stack expects each
tensor to be equal size' once a batch mixes samples whose mask shapes
diverged.

Fix at the source:
- Per cached entry, derive a reference spatial shape from the
  already-cached latent_image.
- For every target name, recompute via _get_previous_item only when
  the cached value is missing OR its spatial shape mismatches the
  reference. Names that already match are left untouched.
- Force the recomputed value onto the reference shape via bilinear
  interpolation when upstream returns something divergent. The mask
  is approximate when the cache crosses pipelines, but it's much
  cheaper than rebuilding 100k entries from scratch.

Stamp a SCHEMA_METHOD marker into cache.json. Caches stamped by the
prior augment that didn't shape-check (schema set, schema_method
unset/different) are auto re-augmented on the next run, fixing the
already-broken on-disk values without manual cache_dir cleanup.
Pure refactor, no behavior change.

- I001: sort the import block (mgds-internal imports first-party section
  per the config used to lint).
- UP035: import Callable from collections.abc instead of typing.
- UP008: drop redundant super() arguments.
- SIM105: replace try/except/pass with contextlib.suppress.
- SIM118: drop .keys() in 'in dict' membership checks.
- SIM108: collapse if/else into a ternary where it fits.
- SIM113: fold a manual build_count into enumerate(start=1).
- C416: rewrite a list comprehension as list().
- RET503: add an explicit return None on the no-match path.
- RSE102: drop the empty parentheses on raise.
- B007: drop the unused fp/i loop variables.
… dir

SmartDiskCache validation regressed dramatically vs the old DiskCache: a
30k-image cache validated in ~40 minutes instead of ~10. Each entry was
firing 1 getmtime + V isfile syscalls plus two pipeline traversals, all
serial. Under Windows Defender / EDR filters this lulled to 4 it/s.

Five bundled changes reduce a fresh-pipeline validation pass on 30k
images from minutes to seconds:

1. _scan_existing_pt_files(): one os.scandir of the cache dir replaces
   N×V os.path.isfile calls during validation, dedup, and build.
2. _bulk_stat_source_files(): parallel os.scandir per source parent
   dir via the existing executor; harvests mtimes in K syscalls
   (K = #parent dirs) instead of N getmtime calls.
3. Validation loop iterates unique in_index once instead of
   needed_variations × N. _validate_entry is invariant in in_variation;
   the build phase still iterates all V internally.
4. Resolution short-circuit: _get_resolution_string is only called
   when an entry is missing or invalidated, not on every cache hit.
5. Per-watched-file directory fingerprint: replaces the parent-dir
   mtime check in _fast_validate. Touching an unrelated sidecar file
   (caption .txt, mask, .npz) in a watched dir no longer invalidates
   the fast path. Stored as cache_index['watched_fingerprints'];
   legacy caches without the field run one full validation pass to
   write it, then take the fast path on subsequent runs.

Also fixes pre-existing ruff violations in tests/test_smartcache.py
(import sort, unused vars, set comprehensions, zip strict=).

Tests: 15 new behaviour-parity tests (TestBulkScanCorrectness,
TestBulkStatCorrectness, TestResolutionShortCircuit, TestVariationDedup,
TestWatchedFingerprint) plus 3 timing benchmarks. Headline benchmark
on this machine: 200-file cold validation 2.5s, fresh-pipeline warm
fast-validate 177ms, full validation after one file touch 177ms.
Existing tests unchanged; one (test_rebuild_cleans_hash_index) updated
to drive the same code path through file-content change rather than
patching os.path.getmtime which the bulk-stat path no longer uses.

Pre-existing GC tests (test_gc_preview_empty, test_gc_clean) still
fail; the blank_sentinel.pt orphan is created by an unrelated upstream
module and is out of scope for this commit.
The validation loop was still calling _get_resolution_string for every
valid cache entry, which chains AspectBucketing -> CalcAspect ->
LoadImage and opens the source image to read its dimensions. On a 33k
dataset this was the dominant remaining cost (~5 it/s, ~hour-and-a-half
total) even after the bulk-scan fixes — the per-image decode dwarfed
the syscalls we'd already eliminated.

Trust the cached resolution on the happy path. Same contract as the
original DiskCache: bucket config changes require a manual cache clear.
schema_method drift is detected earlier in __refresh_cache via
_detect_cache_schema_drift / _augment_cache_with_missing_names and
remains intact.

The rebuild branch still calls _get_resolution_string for files that
genuinely need rebuilding, which is correct and small in the steady
state.
CACHE_VERSION 2 -> 3. Each entry now stores a ``variants`` dict keyed
by resolution string (e.g. ``"896x640"``) instead of single
``cache_file``/``resolution`` fields. v2 indices migrate in place on
load — no .pt rebuild required.

When AspectBucketing config changes between runs (e.g. user edits
target_resolutions), drift recovery derives the new bucket assignment
for each entry purely from the cached aspect ratio (parse "HxW" -> aspect,
run the same argmin against the new bucket_aspects). Any pre-existing
.pt file matching a derived key is reused; missing keys queue rebuilds
of just that variant. No source images are decoded for unchanged
resolutions.

The image cache thus becomes a multi-resolution store: training at 512
yesterday and 768 today doesn't invalidate the 512 variants — both
coexist. Wired through DataLoaderText2ImageMixin and
StableDiffusionFineTuneVaeDataLoader via ``bucket_method_provider`` and
``rebucket_provider`` callbacks.

Other changes:
- gc_preview/gc_clean walk every variant and honour the v2->v3 migrator.
- blank_sentinel.pt is now correctly recognised as referenced (latent
  bug present pre-CACHE_VERSION 3 too).
- _validate_entry returns 'missing_variant' for variant-level rebuilds
  that preserve the parent entry and other variants.
- AspectBucketing exposes bucket_for_aspect() and
  compute_bucket_method_hash() for the cache to call without re-entering
  the LoadImage chain.
Previously, drift recovery only fired when the cache.json had a
stored ``bucket_method`` AND it differed from the current one. v2
caches migrated to v3 have ``stored == None``, so drift was skipped
and stale variants kept being served unchanged — even when the user's
target_resolution had changed since the cache was originally built.

This manifested as OOM (latents larger than the trainer expected) and
batch shape-stack errors (mixed-resolution caches grouping inconsistently).

Fix: trigger drift recovery whenever ``stored != current`` (treating
``None`` as ''old / unknown''). On the no-change happy path the
recovery is a no-op since aspect math produces the already-cached
variant keys. When keys do differ, existing pre-built variants are
linked in if their .pt files exist on disk, and only entries with no
matching variant trigger rebuilds.

Also bump AspectBucketing's bucket_method version from ``aspect_v1`` to
``aspect_v2`` so users who already validated under v3 (and got an
aspect_v1 hash stamped) re-run drift recovery once to catch any
inconsistencies the original v2 -> v3 migration missed.
Two orthogonal correctness fixes for SmartDiskCache.

schema_keys per variant: each variant now stores the sorted list of
split_names + aggregate_names that were present when its .pt was
written. _validate_entry returns the new 'incomplete_schema' result
when a config change (e.g. enabling masked_training) adds required
keys that the cached .pt doesn't carry, instead of silently letting
sentinel-padded zero tensors leak into training. Stamping happens on
build, dedup, and post-augment so legacy variants get backfilled the
first time they're touched. _ensure_pt_files now reads the existing
.pt to verify schema completeness before reusing it, instead of
re-registering an incomplete file by name match alone.

Sentinel reshape: _load_blank_sentinel returns tensors templated off
some arbitrary entry's spatial shape. When the per-file pad path
fired for an item with a different aspect (portrait sentinel into a
landscape item, or vice versa), the verbatim copy crashed
torch.stack downstream in AspectBatchSorting. The pad path now
detects spatial-dim mismatch via a reference shape from any already-
loaded item tensor and zeros a correctly-shaped tensor instead.
Sidecar caches sometimes track source files that may legitimately
not exist on disk — a mask cache, for instance, keys on
<image>-masklabel.png and falls back to a synthesised white mask
(GenerateImageLike) when the file is absent. Today those entries
hit OSError on every getmtime/hash call and either rebuild every
run (validation path) or never build at all (build path).

The new flag flips three sites to a "trust the cache entry" stance
when the source file is missing AND the entry already exists:

- _validate_entry: when current_mtime is None, pin it to the stored
  entry mtime instead of returning 'rebuild', so the equality branch
  takes over and runs the existing variant/.pt/schema checks.

- _fast_validate spot check: treat OSError on getmtime as "use the
  stored mtime" rather than aborting the fast path.

- Build callback: when the source can't be stat'd, fall back to
  mtime=0 and an xxhash of the filepath bytes so distinct synthetic
  entries don't dedup together via a shared "no hash" sentinel.

The default stays False so the image cache (and every other
existing instance) keeps its current loud-fail behaviour when a
source file vanishes.
BitcrushedHeart and others added 30 commits June 11, 2026 22:43
Two opt-in flags, both default-off (single-request behavior is exactly the
legacy bs=1 forward):

- trim_padding: forward only the real-token prefix and zero re-pad the
  hidden state. With right padding and a causal LM, trailing pad tokens
  cannot influence real positions, so every row a downstream
  PruneMaskedTokens keeps is unchanged. A typical 60-token caption stops
  paying for a 512-token forward.

- batch_collector/max_batch_size: leader-elected collector that gathers
  concurrent get_item calls into one padded batch forward. Forwards are
  inherently serialized (one leader at a time), which also covers the
  transformers check_model_inputs thread-safety bug (transformers#42673)
  structurally. With a layer-offloaded or quantized encoder, N captions now
  share one weight-stream instead of paying it N times.

Equivalence covered by tests with a tiny CPU Qwen3: trimmed and batched
hidden states match the padded bs=1 forward on all real-token rows.
The local line (trust_cache, content-addressed caption reuse, encoder
trim/batching) has been running production training and is the stable
implementation. The remote-only commits 4d67533 (per-(in_index,in_variation)
validation rework + test suite rewrite) and 5b4b840 (import hoist) were
never deployed locally and are superseded wholesale by this line ('ours'
merge: their content is intentionally not applied). The xxhash requirements
addition from 4d67533 was re-applied separately in 29c0648.
…ty, I/O waste

- get_item/_load_aggregate_cache resolve the per-epoch bucket key with the
  epoch variation, matching validation/build, so per-epoch variant rotation
  actually reaches training instead of serving the epoch-0 bucket forever
- Sourceless aggregate cache keyed (fp, 0, group_index) to match get_item's
  lookup; aggregate requests no longer fall through to per-item torch.load
- _BatchCollector retries requests individually when a batched forward
  fails, so one bad caption no longer poisons its batchmates into
  blank-sentinel zeros
- missing_pt/incomplete_schema drop and rebuild only the broken variant,
  preserving the entry and its other still-valid variants
- gc_clean/gc_preview no longer break at the first missing variation
  suffix; higher-numbered valid .pt files survive a gap
- Batched trim_padding zeroes each item's tail past its own effective
  length, matching _encode_single, so cache contents are batch-independent
- _try_content_reuse verifies the donor's stamped __content_hash before
  copying; stale content_index mappings are refused
- PadMaskedTokens raises instead of silently truncating real tokens when
  the sequence exceeds max_length
- variant_key_from_aspect returns None (slow-path fallback) when the
  override-enable read fails instead of assuming the override is off
- cache.json is reloaded only when its on-disk stat changed; blank
  sentinel and content-reuse donors are memoized; index writes happen
  outside _index_lock

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
The index-write refactor in 667f6eb introduced both attributes in __init__,
but the TestSynthesizeAggregateChecksVariantExists stub builds its instance
via __new__ and only carried _index_lock, so the lazy-stamp test crashed in
_save_cache_index.
…Llama encoders

The leader-elected BatchCollector (including the per-item retry on batch
failure and batch-isolation semantics from 667f6eb) moves from
EncodeQwenText into mgds.TextEncoderBatching with an opaque result type, so
encoders with non-tensor outputs can share it.

EncodeMistralText (Flux2's Mistral Small 24B, Ernie) and EncodeLlamaText
(HiDream and HunyuanVideo's Llama 8B, including the all-hidden-states list
mode and crop_start) gain opt-in batch_collector/max_batch_size params.
Collector only — no trim_padding: those pipelines cache the full padded
hidden state, and the padded rows can flow to the model unmasked, so their
values must remain the encoder's own outputs.

Both default off; single-request behavior is exactly the legacy bs=1
forward. Equivalence covered by tests with tiny CPU models, including the
HiDream-style all-layers + crop_start configuration.
The validation loop computed each queued rebuild item's resolution
inline via _get_resolution_string, which walks the upstream pipeline
and fully decodes the source image (mask augmentation included) --
~400ms per item, serialized. A few thousand new dataset files turned
the 'validating cache' bar into a multi-hour pre-pass that the build
phase then repeated decode-for-decode.

The loop now queues RESOLUTION_PENDING and a thread pool resolves the
deferred items before the build phase groups by target resolution.
Same walk, same per-index seeded RNG, same bucket choices -- just
concurrent. Caches with no resolution dimension (text caches) skip
the walk entirely via the new _needs_resolution() gate instead of
paying a no-op upstream call per item.
The filepath-granular session skip (_session_validated_filepaths) is
bypassed under multi-resolution bucketing: a filepath maps to several
resolution variants whose required key rotates per epoch, so "filepath
validated" can't mean "this epoch's variant validated". Every epoch
therefore re-ran the full validating-cache loop (scandir + bulk-stat +
per-entry checks) for zero benefit on a stable dataset.

Track (filepath, resolution_key) pairs in a new session-scoped set
instead. Each epoch's required variants are recomputed via
_fast_resolution_string (the same out_variation-seeded bucket roll the
validation loop, get_item and _load_aggregate_cache already use — no
image decode), and validation is skipped when they were all validated
earlier this run. A bucket a file hasn't rolled into yet falls through
to full validation and lazy-build, so correctness holds; once every
(file, bucket) combination has been seen, later epochs skip outright.

Adds TestMultiresVariantSessionSkip: epoch-2 skip on a stable multires
dataset, repeated-epoch skips, fresh-pipeline reset, and the
variant-granularity guarantee that a newly-rolled bucket is built rather
than skipped.
…ss aggregate load

Sourceless-prep metadata stamping ran a full-dataset re-resolution every epoch
even in normal sourced mode (~500% slowdown) and never converged (repr-vs-JSON
change detection re-saved the index and rewrote .pt files every run).

- Presence-gated, index-only stamping: an entry is stamped once (per row,
  keyed by metadata + runtime_values key presence) and then skipped before any
  upstream resolve. No per-epoch re-resolution, no .pt rewrites for metadata.
- Drop the unconditional post-validation upgrade pass; keep the pre-validation
  pass gated on a readiness check that now latches.
- Sourceless init guard: raise a clear error when a delivered entry has no baked
  sourceless metadata (catches stale/trust-mode caches before mis-training).
- Fast sourceless aggregate load: synthesize crop_resolution from the active
  (any-)variant the sourceless get_item serves, skipping torch.load per row —
  ~matches sourced-path speed instead of reading every .pt.
- Cache phase logging is opt-in behind OT_SMARTCACHE_VERBOSE (quiet by default).

Tests: extended sourceless parity (convergence, guard, duplicate/empty rows) and
the smartcache upgrade/readiness tests.
…rotation

The previous sourceless aggregate fast-path was gated on `aspect_bucketing is
None`, but the dataloader stashes the AspectBucketing instance before building
the cache, so in sourceless mode it is a real-but-disconnected object (its
variant_key_from_aspect walks a placeholdered pipeline and returns None). The
gate therefore never engaged and every row fell to torch.load (~2000x slower
than sourced; benchmarked 7.5k .pt reads in 30s vs 4k rows in 1.7s after).

- Gate the fast path on `self.sourceless` instead, and rotate among each
  entry's CACHED resolution variants by (epoch, in_index) via the new
  _sourceless_variant — restoring mixed-resolution bucket rotation that the
  disconnected AspectBucketing can't provide.
- _try_synthesize_aggregate and get_item both call _sourceless_variant with the
  same current_variation + in_index, so the aggregate's crop_resolution always
  matches the latent get_item loads (no AspectBatchSorting/collate mismatch).

Tests: parity still holds (the rotation reproduces the harness's 2-bucket
alternation) plus a new test asserting >1 bucket served per image across epochs.
….pt read

VariationSorting groups every row by concept.* at epoch start, routing to the
text cache's get_item("concept"). In sourceless mode the source modules are
placeholdered, so the cache advertises concept/prompt itself — but get_item
torch.load'd the whole tensor .pt just to hand back a concept dict that already
lives in the index. On a large cache that read the entire archive off disk at
epoch start (py-spy caught it parked in torch.load via VariationSorting).

Serve runtime-value-only requests (concept / prompt / prompt_1 / prompt_2) from
the index runtime_values before any torch.load — mirroring how the sourced
pipeline resolves them from a lightweight upstream module. Tensor split names
still load the .pt (the actual data). Benchmarked: 7126 concept requests on the
real cache now do 0 torch.load calls (was one per row).

Test: a concept request raises if it triggers torch.load.
…None unpack

When the image and text SmartDiskCaches disagree on entry count (e.g. an
incomplete/partial cache sync), AspectBatchSorting sized its index_list from
the image-side resolution length while pulling text names through
VariationSorting, whose balanced length was shorter. The out-of-range index
made VariationSorting.__get_input_index fall off its loop and return None,
crashing 1200 lines later with 'cannot unpack non-iterable NoneType'.

Add an early consistency guard in AspectBatchSorting.start() (every batched
input must match the resolution length) and a clear RuntimeError at the
VariationSorting fall-through, both naming the likely cause (inconsistent /
partially-synced cache) so it's actionable instead of cryptic.
…entries (fixes sourceless DPO row/length mismatch)
…coded 0

__init_variations() requested variation 0 from upstream modules, but on
resume-from-backup at a non-zero epoch it runs for the first time while
upstream modules are already at current_variation=epoch>0, tripping the
variation guard in PipelineModule._get_previous_item. start() already
receives the correct variation; pass it through. Group metadata
(concept.enabled/balancing/path/seed/text) is variation-invariant, so
groups are identical regardless of which variation is used.
py-spy on a 90k-image caching run showed the builder loop spending ~60%
of wall-clock inside _save_cache_index: text-mode writes funneled the
multi-MB ASCII payload through the Windows locale codec (cp1252 charmap,
slower than the json serialization itself), plus a .bak copy of the full
index on every 30s flush.

- write index + content index as utf-8 bytes (payload is ensure_ascii,
  so readable either way; readers get explicit utf-8 for symmetry)
- skip the .bak crash-insurance copy on periodic flushes; final saves
  keep it
- stretch the periodic flush interval 30s -> 120s
…re-resolving

sourceless_rows are keyed by global dataset position, so adding/removing
files anywhere shifted every later in_index and made the entire dataset
look unstamped - _upgrade_sourceless_runtime_values then re-walked the
upstream text pipeline for ~every row (40+ min on a 129k-row DPO cache)
on every dataset composition change.

Everything stamped on a row derives from the source file and its concept,
not its position (position only seeds RNG draws, frozen at bake time), so
a stamp filed under an old index is reused for the new index when the
group key (recomputed from row metadata group_values) and variation count
match. Only genuinely new files take the slow resolve.

Also: tqdm progress bar (the pass previously looked like a hang after
'loading aggregate cache'), periodic index flushes so an interrupt does
not discard a long slow-path run, and pruning of orphaned old-index row
keys on entries the current dataset references.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

DiskCache Variations

1 participant