Skip to content
GitLab
Projects Groups Topics Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Register
  • Sign in
  • S sdv-lammps
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributor statistics
    • Graph
    • Compare revisions
  • Issues 100
    • Issues 100
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Container Registry
    • Terraform modules
  • Monitor
    • Monitor
    • Metrics
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • djurado
  • sdv-lammps
  • Wiki
  • Home

Home · Changes

Page history
Update Home authored Dec 14, 2022 by djurado's avatar djurado
Hide whitespace changes
Inline Side-by-side
Home.md 0 → 100644
View page @ 06062fee
LAMMPS is a classical molecular dynamics simulation code with a focus in materials modeling.
It is written using C++.
The most object-oriented aspects of C++ are used at a high-level to help structure and organize the code, while critical kernels are written using C-style code.
This repository contains an implementation of the `PairLJCharmmCoulLong::compute` function (which belongs to the *lj/charmm/coul/charmm* *pair_style*) optimized for the EPI vector accelerator, which uses the RISC-V vector extension 0.7.
This function is called each timestep when using the [rhodopsin](https://www.lammps.org/bench.html#rhodo) input, which can be downloaded in the same page under the label [bench_protein.tar.gz](https://www.lammps.org/bench/bench_protein.tar.gz).
The input contains two files:
- `in.protein`: the "script" file, which contains the simulation settings.
- `run 100`: change 100 for *N* to run *N* timesteps.
- `pair_style lj/charmm/coul/long 8.0 10.0` This is the line that specifies that we are using the *lj/charmm/coul/charmm* *pair_style*. If a different *pair_style* was selected, then `PairLJCharmmCoulLong::compute` would not be executed, and the optimizations would not have any impact. Moreover, the `8.0`and `10.0` represent the *cutoff distances*, which can have an impact to the execution of the function. For more information, check the LAMMPS [documentation](https://docs.lammps.org/pair_charmm.html#pair-style-lj-charmm-coul-long-command).
- `data.protein`: contains the initial data for the atoms in the simulation and their properties
Clone repository
  • 32 bit and 64 bit data types
  • 32 bit to 64 bit
  • Home
  • Implementation
  • Loop size
  • Managing code paths
  • Overview of Algorithm and Data structures
  • Specialization
  • _sidebar
  • union_int_float_t