Spaces:
Sleeping
Sleeping
File size: 15,645 Bytes
bd7899d cf0a8ed bd7899d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 | """
Tests for VisualKVCache implementation.
"""
import hashlib
import time
import numpy as np
import pytest
from apohara_context_forge.multimodal.visual_kv_cache import (
VisualKVCache,
VisualEmbeddingBlock,
VisualCacheResult,
QueueingController,
)
class TestComputeContentHash:
"""INV-13: content_hash is SHA256 of RAW bytes — never of embeddings."""
def test_sha256_of_raw_bytes(self):
"""Verify content_hash is SHA256 hexdigest of raw bytes."""
cache = VisualKVCache()
raw_bytes = b"test_image_data_12345"
expected_hash = hashlib.sha256(raw_bytes).hexdigest()
result = cache.compute_content_hash(raw_bytes)
assert result == expected_hash
assert len(result) == 64 # SHA256 hexdigest length
def test_different_bytes_different_hash(self):
"""Different raw bytes produce different hashes."""
cache = VisualKVCache()
hash1 = cache.compute_content_hash(b"image1")
hash2 = cache.compute_content_hash(b"image2")
assert hash1 != hash2
def test_same_bytes_same_hash(self):
"""Identical bytes produce identical hashes (cache key invariance)."""
cache = VisualKVCache()
raw = b"identical_content"
hash1 = cache.compute_content_hash(raw)
hash2 = cache.compute_content_hash(raw)
assert hash1 == hash2
class TestVisualKVCacheLookup:
"""O(1) lookup via dict keyed by content_hash."""
def test_lookup_miss_returns_none(self):
"""Cache miss returns None without error."""
cache = VisualKVCache()
result = cache.lookup("nonexistent_hash_12345")
assert result is None
def test_lookup_hit_returns_block(self):
"""Cache hit returns VisualEmbeddingBlock."""
cache = VisualKVCache()
embedding = np.random.randn(100, 512).astype(np.float32)
raw_bytes = b"test_image"
content_hash = cache.compute_content_hash(raw_bytes)
cache.store(content_hash, "image", embedding, resolution=(512, 512))
result = cache.lookup(content_hash)
assert result is not None
assert isinstance(result, VisualEmbeddingBlock)
assert result.content_hash == content_hash
assert result.modality == "image"
def test_lookup_updates_access_count(self):
"""On hit, access_count is incremented."""
cache = VisualKVCache()
embedding = np.random.randn(100, 512).astype(np.float32)
raw_bytes = b"test_image"
content_hash = cache.compute_content_hash(raw_bytes)
cache.store(content_hash, "image", embedding)
# Capture access_count immediately after each lookup
# All references point to same object, so we check the value progression
cache.lookup(content_hash)
count_after_first = cache.lookup(content_hash).access_count
count_after_second = cache.lookup(content_hash).access_count
count_after_third = cache.lookup(content_hash).access_count
# After store: access_count = 0
# After 1st lookup (returns it): access_count = 1
# After 2nd lookup: access_count = 2
# After 3rd lookup: access_count = 3
assert count_after_first == 2
assert count_after_second == 3
assert count_after_third == 4
def test_lookup_moves_to_end_lru(self):
"""Lookup moves accessed item to end (most recently used)."""
cache = VisualKVCache()
embedding = np.random.randn(100, 512).astype(np.float32)
h1 = cache.compute_content_hash(b"first")
h2 = cache.compute_content_hash(b"second")
cache.store(h1, "image", embedding)
cache.store(h2, "image", embedding)
# Access first entry
cache.lookup(h1)
# Evict should remove h1 (now LRU due to h2 being accessed after h1)
# Note: With LFU within the OrderedDict, accessing h1 makes it MRU again
# So eviction would still remove h2 (the older one with fewer accesses)
# This is expected behavior - we track LRU position and access count separately
class TestVisualKVCacheStore:
"""Store embeddings with LFU eviction."""
def test_store_returns_block(self):
"""Store returns the created VisualEmbeddingBlock."""
cache = VisualKVCache()
embedding = np.random.randn(100, 512).astype(np.float32)
content_hash = cache.compute_content_hash(b"test")
result = cache.store(content_hash, "image", embedding, resolution=(512, 512))
assert isinstance(result, VisualEmbeddingBlock)
assert result.content_hash == content_hash
assert result.modality == "image"
assert result.resolution == (512, 512)
assert result.encoder_model == "Qwen3-VL-235B-A22B-Instruct"
def test_store_with_custom_encoder_model(self):
"""Store accepts custom encoder model name."""
cache = VisualKVCache()
embedding = np.random.randn(100, 512).astype(np.float32)
result = cache.store(
cache.compute_content_hash(b"test"),
"image",
embedding,
encoder_model="InternVL3-78B",
)
assert result.encoder_model == "InternVL3-78B"
def test_store_multiple_modalities(self):
"""Store accepts different modalities."""
cache = VisualKVCache()
embedding = np.random.randn(100, 512).astype(np.float32)
h_img = cache.compute_content_hash(b"image")
h_aud = cache.compute_content_hash(b"audio")
h_vid = cache.compute_content_hash(b"video")
cache.store(h_img, "image", embedding)
cache.store(h_aud, "audio", embedding)
cache.store(h_vid, "video", embedding)
img_block = cache.lookup(h_img)
aud_block = cache.lookup(h_aud)
vid_block = cache.lookup(h_vid)
assert img_block is not None
assert aud_block is not None
assert vid_block is not None
assert img_block.modality == "image"
assert aud_block.modality == "audio"
assert vid_block.modality == "video"
def test_store_evicts_on_max_entries(self):
"""Store triggers LFU eviction when max_entries exceeded."""
cache = VisualKVCache(max_entries=3)
embedding = np.random.randn(100, 512).astype(np.float32)
hashes = [cache.compute_content_hash(f"entry_{i}".encode()) for i in range(5)]
for h in hashes[:3]:
cache.store(h, "image", embedding)
assert len(cache._cache) == 3
# Add 4th entry - should evict one
cache.store(hashes[3], "image", embedding)
assert len(cache._cache) == 3
# First entry should be evicted (LFU)
assert cache.lookup(hashes[0]) is None
class TestVisualKVCacheEviction:
"""LRU/LFU eviction logic."""
def test_vram_eviction_respects_max(self):
"""Eviction ensures total vram stays within limit."""
# Create small cache with limited vram
cache = VisualKVCache(
max_entries=10,
max_vram_bytes=1000, # 1KB limit
)
# Each embedding is ~400 bytes (100 * 512 * 4 / 512 estimate)
# Use smaller embeddings to fit test
embedding = np.random.randn(10, 10).astype(np.float32) # ~400 bytes
# Store until vram limit triggers eviction
stored_hashes = []
for i in range(20):
h = cache.compute_content_hash(f"entry_{i}".encode())
cache.store(h, "image", embedding)
stored_hashes.append(h)
# Some entries should remain
remaining = sum(1 for h in stored_hashes if cache.lookup(h) is not None)
assert remaining > 0
assert remaining < len(stored_hashes)
class TestQueueingControllerIntegration:
"""INV-11: With queueing_controller, visual eviction respects minimum_stable_blocks."""
def test_eviction_skipped_when_at_min_stable_blocks(self):
"""Eviction does not occur when cache size <= minimum_stable_blocks."""
class MockQueueingController(QueueingController):
def __init__(self):
self.minimum_stable_blocks = 2
def get_minimum_stable_blocks(self) -> int:
return self.minimum_stable_blocks
controller = MockQueueingController()
cache = VisualKVCache(
max_entries=10,
queueing_controller=controller,
)
embedding = np.random.randn(100, 512).astype(np.float32)
# Store 2 entries (at minimum_stable_blocks)
h1 = cache.compute_content_hash(b"entry1")
h2 = cache.compute_content_hash(b"entry2")
cache.store(h1, "image", embedding)
cache.store(h2, "image", embedding)
# Try to add 3rd - eviction should be skipped due to minimum_stable_blocks
# The cache will still have 2 entries (or possibly 3 if no eviction happens)
# But we should not evict below minimum_stable_blocks
h3 = cache.compute_content_hash(b"entry3")
cache.store(h3, "image", embedding)
# Both original entries should still be accessible
# (eviction was skipped)
assert cache.lookup(h1) is not None or cache.lookup(h2) is not None
def test_eviction_proceeds_above_min_stable_blocks(self):
"""Eviction proceeds normally when above minimum_stable_blocks."""
class MockQueueingController(QueueingController):
def get_minimum_stable_blocks(self) -> int:
return 1
cache = VisualKVCache(
max_entries=3,
queueing_controller=MockQueueingController(),
)
embedding = np.random.randn(100, 512).astype(np.float32)
hashes = [cache.compute_content_hash(f"entry_{i}".encode()) for i in range(5)]
for h in hashes:
cache.store(h, "image", embedding)
# Should have evicted some entries
assert len(cache._cache) <= 3
class TestDPModeRecommendation:
"""Batch-level DP hint based on AMD ROCm benchmarks."""
def test_dp_mode_recommended_batch_gte_2(self):
"""DP mode recommended when batch_image_count >= 2."""
cache = VisualKVCache()
assert cache.get_dp_mode_recommendation(batch_image_count=2) is True
assert cache.get_dp_mode_recommendation(batch_image_count=5) is True
assert cache.get_dp_mode_recommendation(batch_image_count=9) is True
def test_dp_mode_recommended_high_resolution(self):
"""DP mode recommended when resolution >= (512, 512)."""
cache = VisualKVCache()
assert cache.get_dp_mode_recommendation(
batch_image_count=1, image_resolution=(512, 512)
) is True
assert cache.get_dp_mode_recommendation(
batch_image_count=1, image_resolution=(1024, 1024)
) is True
def test_dp_mode_recommended_deep_encoder(self):
"""DP mode recommended when encoder_depth >= 45 (InternVL)."""
cache = VisualKVCache()
assert cache.get_dp_mode_recommendation(
batch_image_count=1, encoder_depth=45
) is True
assert cache.get_dp_mode_recommendation(
batch_image_count=1, encoder_depth=78
) is True
def test_dp_mode_not_recommended_small_batch_low_res(self):
"""DP mode not recommended for small batches with low resolution."""
cache = VisualKVCache()
assert cache.get_dp_mode_recommendation(
batch_image_count=1, image_resolution=(256, 256), encoder_depth=27
) is False
def test_dp_mode_not_recommended_large_batch_low_res(self):
"""DP mode not recommended when batch >= 10 AND resolution <= (256, 256)."""
cache = VisualKVCache()
assert cache.get_dp_mode_recommendation(
batch_image_count=10, image_resolution=(256, 256)
) is False
assert cache.get_dp_mode_recommendation(
batch_image_count=15, image_resolution=(128, 128)
) is False
def test_dp_mode_recommendation_increments_counter(self):
"""Calling get_dp_mode_recommendation increments internal counter."""
cache = VisualKVCache()
cache.get_dp_mode_recommendation(batch_image_count=5)
stats = cache.get_cache_stats()
assert stats["dp_mode_recommendations"] == 1
class TestCacheStats:
"""Prometheus metrics via get_cache_stats()."""
def test_stats_keys_complete(self):
"""All 6 Prometheus metric keys present."""
cache = VisualKVCache()
stats = cache.get_cache_stats()
expected_keys = {
"visual_cache_hits",
"visual_cache_misses",
"visual_cache_hit_rate",
"visual_vram_saved_bytes",
"visual_cache_entries",
"dp_mode_recommendations",
}
assert set(stats.keys()) == expected_keys
def test_hit_rate_calculation(self):
"""Hit rate computed correctly."""
cache = VisualKVCache()
embedding = np.random.randn(100, 512).astype(np.float32)
# Miss
cache.lookup("nonexistent")
# Hit
h = cache.compute_content_hash(b"test")
cache.store(h, "image", embedding)
cache.lookup(h)
stats = cache.get_cache_stats()
assert stats["visual_cache_hits"] == 1
assert stats["visual_cache_misses"] == 1
assert stats["visual_cache_hit_rate"] == 0.5
def test_vram_saved_accumulates_on_hits(self):
"""VRAM saved bytes accumulates across hits."""
cache = VisualKVCache()
embedding = np.random.randn(100, 512).astype(np.float32)
h = cache.compute_content_hash(b"test")
cache.store(h, "image", embedding)
# Multiple hits should accumulate vram_saved
cache.lookup(h)
cache.lookup(h)
cache.lookup(h)
stats = cache.get_cache_stats()
assert stats["visual_vram_saved_bytes"] > 0
def test_entries_count(self):
"""visual_cache_entries reflects current cache size."""
cache = VisualKVCache(max_entries=10)
embedding = np.random.randn(100, 512).astype(np.float32)
for i in range(5):
cache.store(cache.compute_content_hash(f"entry_{i}".encode()), "image", embedding)
stats = cache.get_cache_stats()
assert stats["visual_cache_entries"] == 5
class TestClear:
"""Cache clear functionality."""
def test_clear_resets_all_state(self):
"""Clear removes all entries and resets metrics."""
cache = VisualKVCache()
embedding = np.random.randn(100, 512).astype(np.float32)
h = cache.compute_content_hash(b"test")
cache.store(h, "image", embedding)
cache.lookup(h)
cache.get_dp_mode_recommendation(batch_image_count=5)
cache.clear()
stats = cache.get_cache_stats()
assert stats["visual_cache_entries"] == 0
assert stats["visual_cache_hits"] == 0
assert stats["visual_cache_misses"] == 0
assert stats["visual_vram_saved_bytes"] == 0
assert stats["dp_mode_recommendations"] == 0
assert cache.lookup(h) is None |