File size: 15,215 Bytes
096347b | 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 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 | """Convert an MPtrj JSON file into ASE-LMDB shards for Equiformer V3."""
from __future__ import annotations
import argparse
import json
import multiprocessing as mp
import os
import time
from collections import deque
from concurrent.futures import Future, ProcessPoolExecutor
from itertools import islice
from pathlib import Path
from types import SimpleNamespace
from typing import Iterable, Iterator
import ase
import numpy as np
import torch
from ase import Atoms
from ase.calculators.singlepoint import SinglePointCalculator
from ase.db import connect
from onescience.modules.func_utils.uma_graph.radius_graph_pbc import radius_graph_pbc
def _to_atoms(identifier: str, record: dict) -> Atoms:
"""Convert one MPtrj record while preserving FairChem label conventions."""
structure = record["structure"]
sites = structure["sites"]
numbers = [
ase.data.atomic_numbers[site["species"][0]["element"]] for site in sites
]
positions = [site["xyz"] for site in sites]
atoms = Atoms(
numbers,
positions,
cell=structure["lattice"]["matrix"],
pbc=True,
)
# MPtrj stress is reported in kbar; retain the upstream ASE sign and units.
stress = np.asarray(record["stress"], dtype=np.float32)
stress = stress * (-0.1 * ase.units.GPa)
energy = record["uncorrected_total_energy"]
atoms.calc = SinglePointCalculator(
atoms,
energy=energy,
free_energy=energy,
forces=record["force"],
stress=stress,
)
atoms.info["sid"] = identifier
return atoms
def _has_no_isolated_atoms(
atoms: Atoms, cutoff: float, max_neighbors: int
) -> bool:
# Match the upstream AtomsToGraphs + radius_graph_pbc(..., True) path.
data = SimpleNamespace(
pos=torch.as_tensor(atoms.positions, dtype=torch.float32),
cell=torch.as_tensor(atoms.cell.array, dtype=torch.float32).view(1, 3, 3),
pbc=torch.as_tensor(atoms.pbc, dtype=torch.bool).view(1, 3),
natoms=torch.tensor([len(atoms)], dtype=torch.long),
)
edge_index, _, _ = radius_graph_pbc(
data,
cutoff,
max_neighbors,
True,
pbc=data.pbc[0],
)
counts = torch.bincount(edge_index[1], minlength=len(atoms))
return bool(torch.all(counts > 0))
def _init_worker() -> None:
"""Keep each conversion worker single-threaded to avoid CPU oversubscription."""
os.environ["OMP_NUM_THREADS"] = "1"
os.environ["MKL_NUM_THREADS"] = "1"
torch.set_num_threads(1)
def _worker_ready() -> None:
"""Start the process pool before the parent opens an ASE database."""
def _convert_batch(
batch: list[tuple[str, dict]], cutoff: float, max_neighbors: int
) -> list[Atoms | None]:
converted: list[Atoms | None] = []
for identifier, record in batch:
atoms = _to_atoms(identifier, record)
converted.append(
atoms if _has_no_isolated_atoms(atoms, cutoff, max_neighbors) else None
)
return converted
def _iter_batches(
records: Iterable[tuple[str, dict]], batch_size: int
) -> Iterator[list[tuple[str, dict]]]:
iterator = iter(records)
while batch := list(islice(iterator, batch_size)):
yield batch
def _convert_batches_ordered(
records: Iterable[tuple[str, dict]],
cutoff: float,
max_neighbors: int,
workers: int,
batch_size: int,
executor: ProcessPoolExecutor | None,
) -> Iterator[list[Atoms | None]]:
batches = _iter_batches(records, batch_size)
if executor is None:
for batch in batches:
yield _convert_batch(batch, cutoff, max_neighbors)
return
pending: deque[Future[list[Atoms | None]]] = deque()
max_pending = workers * 2
for batch in batches:
pending.append(
executor.submit(_convert_batch, batch, cutoff, max_neighbors)
)
if len(pending) >= max_pending:
yield pending.popleft().result()
while pending:
yield pending.popleft().result()
class _JSONStream:
"""Incrementally decode JSON values without loading the full MPtrj file."""
def __init__(self, path: Path, chunk_size: int = 1 << 20):
self.handle = path.open("r", encoding="utf-8")
self.chunk_size = chunk_size
self.buffer = ""
self.decoder = json.JSONDecoder()
self.eof = False
def close(self) -> None:
self.handle.close()
def _fill(self) -> None:
if not self.eof:
chunk = self.handle.read(self.chunk_size)
if chunk:
self.buffer += chunk
else:
self.eof = True
def _skip_whitespace(self) -> None:
while True:
stripped = self.buffer.lstrip()
if stripped:
self.buffer = stripped
return
self._fill()
if not self.buffer and self.eof:
raise EOFError("unexpected end of JSON input")
def _take(self, token: str) -> None:
self._skip_whitespace()
if not self.buffer.startswith(token):
raise ValueError(f"expected {token!r} in MPtrj JSON")
self.buffer = self.buffer[len(token) :]
def value(self):
"""Read one complete JSON value, filling until the decoder succeeds."""
self._skip_whitespace()
while True:
try:
value, end = self.decoder.raw_decode(self.buffer)
except json.JSONDecodeError:
if self.eof:
raise
self._fill()
continue
self.buffer = self.buffer[end:]
return value
def iter_group_records(self) -> Iterator[tuple[str, dict]]:
"""Yield ``(record_id, record)`` pairs from the current group object."""
self._take("{")
self._skip_whitespace()
if self.buffer.startswith("}"):
self.buffer = self.buffer[1:]
return
while True:
record_id = self.value()
if not isinstance(record_id, str):
raise ValueError("MPtrj record identifiers must be strings")
self._take(":")
record = self.value()
if not isinstance(record, dict):
raise ValueError("MPtrj records must be JSON objects")
yield record_id, record
self._skip_whitespace()
if self.buffer.startswith(","):
self.buffer = self.buffer[1:]
continue
self._take("}")
return
def iter_records(self) -> Iterator[tuple[str, dict]]:
"""Yield all records from the two-level MPtrj root object."""
self._take("{")
self._skip_whitespace()
if self.buffer.startswith("}"):
self.buffer = self.buffer[1:]
return
while True:
group_id = self.value()
if not isinstance(group_id, str):
raise ValueError("MPtrj group identifiers must be strings")
self._take(":")
for record_id, record in self.iter_group_records():
# Upstream discards the outer group key and uses this ID as sid.
yield record_id, record
self._skip_whitespace()
if self.buffer.startswith(","):
self.buffer = self.buffer[1:]
continue
self._take("}")
while not self.eof:
self._fill()
if self.buffer.strip():
raise ValueError("trailing data after MPtrj JSON root object")
self.buffer = ""
return
def _count_records(
input_path: Path,
max_records: int | None,
progress_every: int,
) -> int:
"""Count records without retaining the full upstream JSON object in memory."""
stream = _JSONStream(input_path)
started = time.monotonic()
try:
records = stream.iter_records()
if max_records is not None:
records = islice(records, max_records)
count = 0
for _ in records:
count += 1
if progress_every and count % progress_every == 0:
elapsed = max(time.monotonic() - started, 1e-9)
print(
f"counted {count} input records; "
f"rate={count / elapsed:.1f} records/s",
flush=True,
)
print(
f"counted {count} input records; starting conversion",
flush=True,
)
return count
finally:
stream.close()
def _shard_sizes(total_records: int, shards: int) -> list[int]:
"""Return the same contiguous, remainder-first split used upstream."""
chunk_size, remainder = divmod(total_records, shards)
return [
chunk_size + (1 if shard_index < remainder else 0)
for shard_index in range(shards)
]
def convert(
input_path: Path,
output_dir: Path,
cutoff: float,
max_neighbors: int,
shards: int,
max_records: int | None = None,
progress_every: int = 10_000,
workers: int = 1,
batch_size: int = 16,
) -> None:
if shards < 1:
raise ValueError("shards must be positive")
if max_records is not None and max_records < 1:
raise ValueError("max_records must be positive")
if progress_every < 0:
raise ValueError("progress_every cannot be negative")
if workers < 1:
raise ValueError("workers must be positive")
if batch_size < 1:
raise ValueError("batch_size must be positive")
output_dir.mkdir(parents=True, exist_ok=True)
existing = sorted(output_dir.iterdir())
if existing:
raise FileExistsError(
f"refusing to write into non-empty output directory {output_dir}; "
"choose a new directory or clear it explicitly"
)
total_records = _count_records(input_path, max_records, progress_every)
shard_sizes = _shard_sizes(total_records, shards)
atom_counts: list[int] = []
written = 0
examined = 0
next_progress = progress_every
conversion_started = time.monotonic()
executor: ProcessPoolExecutor | None = None
if workers > 1:
executor = ProcessPoolExecutor(
max_workers=workers,
mp_context=mp.get_context("fork"),
initializer=_init_worker,
)
# ProcessPoolExecutor launches all workers together on its first submit.
executor.submit(_worker_ready).result()
stream = _JSONStream(input_path)
try:
records = stream.iter_records()
if max_records is not None:
records = islice(records, max_records)
for shard_index, shard_size in enumerate(shard_sizes):
# Zero padding preserves numeric shard order in AseDBDataset, whose
# directory discovery sorts paths lexicographically.
database = connect(
str(output_dir / f"data_{shard_index:05d}.aselmdb")
)
shard_written = 0
try:
shard_records = islice(records, shard_size)
for converted in _convert_batches_ordered(
shard_records,
cutoff,
max_neighbors,
workers,
batch_size,
executor,
):
for atoms in converted:
examined += 1
if atoms is not None:
database.write(atoms, data=atoms.info)
atom_counts.append(len(atoms))
shard_written += 1
written += 1
if progress_every and examined >= next_progress:
elapsed = max(
time.monotonic() - conversion_started, 1e-9
)
rate = examined / elapsed
remaining = total_records - examined
eta_seconds = remaining / rate if rate else float("inf")
print(
f"processed {examined}/{total_records} records; "
f"wrote {written}; filtered {examined - written}; "
f"rate={rate:.1f} records/s; "
f"eta={eta_seconds / 60:.1f} min",
flush=True,
)
next_progress += progress_every
finally:
database.close()
print(
f"finished shard {shard_index}: examined {shard_size}; "
f"wrote {shard_written}",
flush=True,
)
finally:
stream.close()
if executor is not None:
executor.shutdown(wait=True, cancel_futures=True)
if examined != total_records:
raise RuntimeError(
f"MPtrj input changed while converting: counted {total_records} "
f"records but read {examined}"
)
np.savez(
output_dir / "metadata.npz",
natoms=np.asarray(atom_counts, dtype=np.int64),
)
print(f"wrote {written} structures to {output_dir} ({shards} shards)")
def main() -> None:
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument("--input", type=Path, required=True, help="MPtrj JSON file")
parser.add_argument(
"--output", type=Path, required=True, help="ASE-LMDB output directory"
)
parser.add_argument("--cutoff", type=float, default=6.0)
parser.add_argument("--max-neighbors", type=int, default=1000)
parser.add_argument("--shards", type=int, default=15)
parser.add_argument(
"--max-records",
type=int,
default=None,
help="optional maximum input records to examine for bounded validation",
)
parser.add_argument(
"--progress-every",
type=int,
default=10_000,
help="print progress after this many input records; zero disables it",
)
parser.add_argument(
"--workers",
type=int,
default=1,
help="parallel CPU conversion workers; results remain ordered",
)
parser.add_argument(
"--batch-size",
type=int,
default=16,
help="records sent to each worker task",
)
args = parser.parse_args()
if args.shards < 1:
parser.error("--shards must be positive")
if args.max_records is not None and args.max_records < 1:
parser.error("--max-records must be positive")
if args.progress_every < 0:
parser.error("--progress-every cannot be negative")
if args.workers < 1:
parser.error("--workers must be positive")
if args.batch_size < 1:
parser.error("--batch-size must be positive")
convert(
args.input,
args.output,
args.cutoff,
args.max_neighbors,
args.shards,
args.max_records,
args.progress_every,
args.workers,
args.batch_size,
)
if __name__ == "__main__":
main()
|