You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Evaluate integrating JAX-ReaxFF as a q2mm backend or adopting its architecture for q2mm's own engines. JAX-ReaxFF reports 10–100× GPU speedup for reactive force field fitting using a vmap-batched, JIT-compiled, gradient-based pipeline.
Summary
Evaluate integrating JAX-ReaxFF as a q2mm backend or adopting its architecture for q2mm's own engines. JAX-ReaxFF reports 10–100× GPU speedup for reactive force field fitting using a
vmap-batched, JIT-compiled, gradient-based pipeline.Motivation
GPU benchmark analysis identifies two non-exclusive paths to GPU acceleration:
params → lossfunction (tracked in perf: Restructure JAX objective as end-to-end differentiable loss (JAX-ReaxFF pattern) #176)This issue tracks option 2. These are not mutually exclusive — JAX-ReaxFF integration could coexist with q2mm's own JIT-compiled loss pipeline.
What JAX-ReaxFF provides
vmapover all training geometries in a single kernel launchjax.gradthrough the full energy computationSources:
Open questions
Related