Hey @akohlmey pin this !
LammpsGPT what detailed custom knowledge do you have ? and what can you do with github api ?
I’m using a domain-specialized GPT model that has been extensively customized to work with materials simulation tools, especially LAMMPS, ReaxFF, Kokkos, and high-performance C++. It integrates thousands of pages of curated documentation, real source code, and scientific literature into a conversational assistant. Here’s an in-depth description of its capabilities and embedded knowledge.
Core Knowledge Domains
1. LAMMPS (Large-scale Atomic/Molecular Massively Parallel Simulator)
Sources Integrated:
- Full LAMMPS documentation (as of March 2025).
- Parsed and structured C++ source code (
src/
andlib/
directories). - Known issue trackers and resolved PRs from the official GitHub.
- Benchmarks and examples from
examples/
,bench/
, and tutorials.
Capabilities:
- Explains any LAMMPS command with all arguments, defaults, and examples.
- Diagnoses common input script errors and misconfigurations.
- Deep access to internals:
- Core classes:
Atom
,Pair
,Force
,Fix
,Neighbor
,KSpace
,Update
. - Integration schemes:
verlet
,respa
,nve/nvt/npt
,run_style respa
. - Domain decomposition and parallelism strategy (spatial bins, ghost atoms).
- Core classes:
- LAMMPS-style memory management (
memory->create()
,destroy()
,grow()
). - Explains how various styles map to files, e.g.,
pair_style eam
→pair_eam.cpp
. - Compatibility notes: what features work with Kokkos, OpenMP, or GPU builds.
- Assistance in debugging or extending LAMMPS with custom C++ code.
2. ReaxFF (Reactive Force Field)
Sources Integrated:
- Dozens of ReaxFF publications, parameterization articles, and comparative reviews.
- Parameter file specifications from
ffield.reax
,ffield.reax.params
. - LAMMPS-specific implementation notes (
REAXFF
,fix qeq/reax
,fix acks2
).
Capabilities:
- Parses and explains every block in a ReaxFF parameter file.
- Connects parameters to physical models (e.g., bond order, valence angle terms, torsion corrections).
- Validates ReaxFF parameters against expected chemical behavior.
- Literature insight into:
- Charge equilibration: QEq vs ACKS2 [doi:10.1021/ct300073q].
- Handling long-range Coulomb via
fix qeq/reax
,kspace_style
, or ACKS2 extension. - Overcoordination and undercoordination handling.
- Practical modeling insights:
- Guidance on modeling combustion, catalysis, aqueous reactions.
- How to adjust parameters for ion migration, SEI growth, shock loading.
- Assistance with fitting workflows, e.g., using
reaxff-lg
, Genetic Algorithm fitting, or training set generation.
3. Kokkos (Performance Portability for GPUs/CPUs)
Sources Integrated:
- Full snapshot of the Kokkos-Core-Wiki.
- Kokkos source code and LAMMPS integration layer.
- Examples from miniKokkos, LULESH, Cabana, and real simulation codes.
Capabilities:
- Detailed understanding of:
Kokkos::View
,Kokkos::parallel_for
,parallel_reduce
,TeamPolicy
,RangePolicy
.- Memory spaces:
CudaSpace
,SharedSpace
,HostSpace
,ScratchSpace
. - Execution spaces:
Cuda
,OpenMP
,Threads
,Serial
.
- LAMMPS-specific mappings:
PairKokkos
andFixKokkos
wrappers.- GPU layout implications for atom properties.
- Tuning advice:
layout_right
vslayout_left
, shared memory tuning, scratch size.
- How to convert raw C++ loops to Kokkos kernels.
- Assistance debugging race conditions, memory access violations on device code.
- Profiling and tuning with
nvprof
,Nsight Systems
,VTune
, orTAU
.
4. Modern C++ (C++11 through C++23)
Sources Integrated:
- Curated JSONL knowledge of cppreference.com (2025 snapshot).
- Specific analysis of idioms used in LAMMPS and Kokkos.
- Idioms used in large-scale scientific software (template metaprogramming, RAII, traits, etc).
Capabilities:
- Explains any STL container, algorithm, or concurrency primitive.
- Deep dive into:
std::vector
,std::map
,std::unordered_map
as used in atom management.std::thread
,std::atomic
,std::mutex
, and LAMMPS concurrency layers.- Template design patterns: CRTP, SFINAE, type traits, enable_if.
- Memory models:
new/delete
, custom allocators, alignment issues on GPU. - Help writing performance-portable device/host templated C++ code.
5. Build Systems & Performance Engineering
Includes Knowledge Of:
- CMake (
LAMMPS_DIR/cmake/
), Make, Ninja. - Compilers: GCC, Clang, NVHPC, Intel OneAPI.
- Accelerators: CUDA, HIP, SYCL, OpenMP 5.
- MPI, ScaLAPACK, FFTW, libint, libtorch.
Capabilities:
- Walkthrough of configuring
cmake
for LAMMPS:- Kokkos GPU builds:
-D PKG_KOKKOS=on -D Kokkos_ARCH_VOLTA70=on -D Kokkos_ENABLE_CUDA=on
. - Cross-compiling on Frontier, Fugaku, Polaris, etc.
- Static vs shared builds, multi-package linking issues.
- Kokkos GPU builds:
- Guidance for:
- Optimizing MPI domain sizes, OpenMP thread pinning.
- Memory affinity, NUMA effects.
- Profiling with
perf
,nsys
,VTune
,HPCToolkit
.
GitHub API Integration
Can Perform:
- Search repositories, commits, PRs, issues.
- Read files at any branch or SHA.
- List and summarize PRs, including diffs and reviews.
- Extract
CMakeLists.txt
,ffield.reax
, source code, and diffs across versions. - Help maintain forks and parameter sets by syncing or automating edits.
Use Case Examples
- Parse and validate a custom ReaxFF parameter set line by line.
- Explain why a specific LAMMPS error appears during a
fix
orrun
command. - Help refactor a
pair_style
for Kokkos execution. - Profile and optimize a LAMMPS build for multi-GPU performance.
- Review a GitHub PR that modifies
compute_heat_flux.cpp
and explain the diff.
This assistant is built for researchers working on molecular simulations, materials modeling, and high-performance scientific computing. It supports both beginners and advanced users working in LAMMPS, ReaxFF, and GPU-accelerated platforms like Kokkos.
Feel free to tag me or ask about specific LAMMPS input files, parameter tuning, or code extensions.