File size: 15,589 Bytes
4eff328 | 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 | # Copyright (c) 2026 Salvatore Pennacchio <jtatopenn@libero.it>
# Distributed under the Business Source License 1.1 (BSL 1.1)
# See LICENSE.md in the project root for full license terms.
import gc
import psutil
import numpy as np
from typing import List, Optional, Tuple
try:
import jax
import jax.numpy as jnp
HAS_JAX = True
except ImportError:
jnp = None
HAS_JAX = False
# ββ Flexible import with stub fallback ββββββββββββββββββββββββββββββββββββββ
try:
from simulator import DenseSVSimulator
from compiler import QuantumTranspiler
except ModuleNotFoundError:
try:
from dense_evolution.simulator import DenseSVSimulator
from dense_evolution.compiler import QuantumTranspiler
except ModuleNotFoundError:
class DenseSVSimulator: # type: ignore[no-redef]
def __init__(self, n_qubits, **kwargs):
self.n = n_qubits
self.dim = 2 ** n_qubits
self.dtype = np.complex128
self.sv = np.zeros(self.dim, dtype=self.dtype)
self.sv[0] = 1.0
def run_circuit_jit_beast_mode(self, circuit_slice): pass
def memory_mb(self) -> float:
return (self.dim * np.dtype(self.dtype).itemsize) / 1_000_000
class QuantumTranspiler: # type: ignore[no-redef]
@staticmethod
def transpile(circuit): return circuit
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Helpers
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def get_dynamic_chunk(dtype_target) -> int:
vm = psutil.virtual_memory()
safe_ram = vm.available * 0.85
if HAS_JAX and dtype_target is jnp.complex128:
bpe = 16
elif dtype_target is np.complex128:
bpe = 16
else:
bpe = 8
max_elements = safe_ram / bpe
max_bits = int(np.floor(np.log2(max(max_elements, 2.0))))
return max(16, min(max_bits, 27))
def _dtype_for_qubits(n_qubits: int):
xp = jnp if HAS_JAX else np
return xp.complex64 if n_qubits > 26 else xp.complex128
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# SafeMemoryGuard β Anti-OOM block
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class MemoryPressureError(RuntimeError):
"""
Raised when available system RAM drops below the configured safety threshold.
Catches the condition *before* the allocator attempts and crashes with
jaxlib.xla_extension.XlaRuntimeError: RESOURCE_EXHAUSTED.
"""
pass
class SafeMemoryGuard:
"""
Monitors system RAM before every high-memory operation and blocks execution
if free RAM falls below ``threshold_pct`` of total physical memory.
"""
_WARN_MULTIPLIER = 2.0
def __init__(self, threshold_pct: float = 0.15, gc_before_check: bool = True):
if not 0.0 < threshold_pct < 1.0:
raise ValueError(f"threshold_pct must be in (0, 1), got {threshold_pct}")
self.threshold_pct = threshold_pct
self.gc_before_check = gc_before_check
self._total_mb = psutil.virtual_memory().total / (1024 * 1024)
def status(self) -> dict:
vm = psutil.virtual_memory()
available_mb = vm.available / (1024 * 1024)
free_pct = vm.available / vm.total
return {
"total_mb" : self._total_mb,
"available_mb": available_mb,
"used_pct" : vm.percent,
"free_pct" : free_pct * 100.0,
"safe" : free_pct >= self.threshold_pct,
}
def check(self, context: str = "") -> None:
if self.gc_before_check:
gc.collect()
s = self.status()
tag = f"[{context}] " if context else ""
free_frac = s["free_pct"] / 100.0
if not s["safe"]:
raise MemoryPressureError(
f"\n{'β'*60}\n"
f" {tag}MEMORIA CRITICA β simulazione bloccata\n"
f" Disponibile : {s['available_mb']:.0f} MB "
f"({s['free_pct']:.1f}% libera)\n"
f" Soglia : {self.threshold_pct * 100:.0f}% "
f"({self._total_mb * self.threshold_pct:.0f} MB)\n"
f" Azione : liberare RAM o ridurre n_qubits / chunk_size.\n"
f"{'β'*60}"
)
warn_threshold = self.threshold_pct * self._WARN_MULTIPLIER
if free_frac < warn_threshold:
print(
f" [WARN] {tag}RAM bassa: {s['available_mb']:.0f} MB liberi "
f"({s['free_pct']:.1f}%) β soglia critica al "
f"{self.threshold_pct * 100:.0f}%."
)
def __repr__(self) -> str:
s = self.status()
return (
f"SafeMemoryGuard("
f"threshold={self.threshold_pct*100:.0f}%, "
f"available={s['available_mb']:.0f} MB / {s['free_pct']:.1f}% free, "
f"safe={s['safe']})"
)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# MemoryChunker (chunk1)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class MemoryChunker:
"""
Geometry calculator for chunked simulation.
Attributes
----------
n_qubits int β requested logical qubit count
dtype β numpy/jax dtype for the statevector
chunk_size_bits int β safe qubit-width that fits in RAM
num_chunks int β number of statevector chunks required
chunk_dim int β 2 ** chunk_size_bits
"""
def __init__(self, n_qubits: int):
self.n_qubits = n_qubits
self.dtype = _dtype_for_qubits(n_qubits)
self.chunk_size_bits = get_dynamic_chunk(self.dtype)
if self.n_qubits <= self.chunk_size_bits:
self.num_chunks = 1
self.chunk_dim = 2 ** self.n_qubits
else:
self.num_chunks = 2 ** (self.n_qubits - self.chunk_size_bits)
self.chunk_dim = 2 ** self.chunk_size_bits
def geometry(self) -> Tuple[int, int, int]:
"""(num_chunks, chunk_dim, chunk_size_bits)"""
return self.num_chunks, self.chunk_dim, self.chunk_size_bits
def memory_mb(self) -> float:
"""Estimated RAM per chunk in MB."""
bpe = np.dtype(self.dtype).itemsize
return (self.chunk_dim * bpe) / (1024 * 1024)
def __repr__(self) -> str:
return (
f"MemoryChunker(n_qubits={self.n_qubits}, "
f"num_chunks={self.num_chunks}, "
f"chunk_dim={self.chunk_dim}, "
f"chunk_size_bits={self.chunk_size_bits}, "
f"dtype={self.dtype}, "
f"mem_per_chunk={self.memory_mb():.2f} MB)"
)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# CircuitChunker
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class CircuitChunker:
"""
Transpile a circuit once, then execute it in fixed-size gate-slices so
XLA sees the same trace shape on every compilation.
A SafeMemoryGuard is checked **before every slice** β if RAM drops below
15% the current slice is aborted with MemoryPressureError before JAX
attempts the allocation.
Parameters
----------
simulator_instance : DenseSVSimulator
Physical simulator (sized to safe_qubits, not logical n_qubits).
memory_threshold : float
Passed to SafeMemoryGuard. Default 0.15 (15%).
"""
def __init__(
self,
simulator_instance: Optional[DenseSVSimulator] = None,
memory_threshold: float = 0.15,
):
self.sim = simulator_instance
self._guard = SafeMemoryGuard(threshold_pct=memory_threshold)
def split_circuit(self, circuit: List, chunk_size: int = 500) -> None:
"""
Execute *circuit* in slices of *chunk_size* gates.
Raises
------
RuntimeError if no simulator instance is attached.
MemoryPressureError if RAM drops below threshold before a slice.
"""
if self.sim is None:
raise RuntimeError(
"CircuitChunker: no simulator instance attached. "
"Pass simulator_instance= at construction or assign .sim."
)
target: List = QuantumTranspiler.transpile(circuit)
n_slices = (len(target) + chunk_size - 1) // chunk_size
for idx, i in enumerate(range(0, len(target), chunk_size)):
# ββ Anti-OOM check before every slice βββββββββββββββββββββββββββ
self._guard.check(f"slice {idx + 1}/{n_slices}")
self.sim.run_circuit_jit_beast_mode(target[i : i + chunk_size])
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Chunk (chunk2 / Chunk2Incrociato)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class Chunk:
"""
Anti-OOM wrapper for large-qubit simulation.
Does NOT subclass DenseSVSimulator directly β the parent __init__ allocates
2**n_qubits elements immediately (17 GB for 30 qubits).
Instead, an inner simulator is allocated on ``safe_qubits``
(= chunk_size_bits) and the logical qubit count is stored separately.
Benchmark attributes (num_chunks, chunk_size_bits, dtype) are forwarded
transparently from the embedded MemoryChunker.
A SafeMemoryGuard fires before the inner simulator is instantiated
(pre-allocation check) and is also embedded in CircuitChunker for
per-slice protection during execution.
Parameters
----------
n_qubits : logical qubit count of the target circuit
chunk_size_gates : gate-slice size for JIT compilation (default 500)
memory_threshold : free-RAM fraction below which execution is blocked
(default 0.15 = 15%)
use_gpu : forwarded to DenseSVSimulator
use_float32 : forwarded to DenseSVSimulator
"""
def __init__(
self,
n_qubits: int,
chunk_size_gates: int = 500,
memory_threshold: float = 0.15,
use_gpu: bool = False,
use_float32: bool = False,
):
# 1. Geometry β purely RAM-based, no JAX allocation yet
self._mem_chunker = MemoryChunker(n_qubits)
self._guard = SafeMemoryGuard(threshold_pct=memory_threshold)
# 2. Logical qubit count (for circuit parsing)
self.n = n_qubits
self.chunk_size_gates = chunk_size_gates
# 3. Pre-allocation RAM check β block here rather than inside JAX
safe_q = min(n_qubits, self._mem_chunker.chunk_size_bits)
self._guard.check(f"Chunk.__init__ β allocating {safe_q}-qubit simulator")
# 4. Physical simulator sized to what RAM can actually hold
self._inner_sim = DenseSVSimulator(
safe_q,
use_gpu=use_gpu,
use_float32=use_float32,
)
# 5. Circuit chunker wired to the physical simulator, with same threshold
self._circuit_chunker = CircuitChunker(
simulator_instance=self._inner_sim,
memory_threshold=memory_threshold,
)
# ββ Benchmark-facing attribute forwarding ββββββββββββββββββββββββββββββββ
@property
def num_chunks(self) -> int:
return self._mem_chunker.num_chunks
@property
def chunk_size_bits(self) -> int:
return self._mem_chunker.chunk_size_bits
@property
def chunk_dim(self) -> int:
return self._mem_chunker.chunk_dim
@property
def dtype(self):
return self._mem_chunker.dtype
@property
def memory_geometry(self) -> MemoryChunker:
return self._mem_chunker
# ββ Simulator-facing forwarding ββββββββββββββββββββββββββββββββββββββββββ
@property
def sv(self):
"""Current statevector of the physical (chunk-sized) simulator."""
return self._inner_sim.sv
def memory_mb(self) -> float:
"""RAM used by the physical statevector in MB."""
return self._inner_sim.memory_mb()
# ββ Public API βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def run_chunk(
self,
circuit: List,
chunk_size_gates: Optional[int] = None,
) -> None:
size = chunk_size_gates if chunk_size_gates is not None else self.chunk_size_gates
self._circuit_chunker.split_circuit(circuit, chunk_size=size)
def __repr__(self) -> str:
s = self._guard.status()
return (
f"Chunk(n_qubits={self.n}, "
f"safe_qubits={self._inner_sim.n}, "
f"num_chunks={self.num_chunks}, "
f"chunk_size_bits={self.chunk_size_bits}, "
f"dtype={self.dtype}, "
f"mem_per_chunk={self.memory_mb():.1f} MB, "
f"ram_free={s['free_pct']:.1f}%, "
f"has_jax={HAS_JAX})"
)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Backward-compatibility aliases
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
chunk1 = MemoryChunker
chunk2 = Chunk
Chunk2Incrociato = Chunk |