Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Generates the pair list of atoms that are closer to each other than the given threshold under the periodic boundary conditions.
version 0.5.1.1
See pairlist.h
for the function definition and pairlist-test.c
for usage.
Python API is served in pairlist.py. The API document is here.
To find the neighbors in a face-centered cubic lattice of size 10x10x10 on a MacBook Air 2021 (Apple Silicon),
$ python benchmark.py
INFO crude: Neighboring pair list by a crude double loop.
INFO crude: 18024 ms
INFO crude: end.
24000 pairs
INFO numpyish: Neighboring pair list by numpy fancy array.
INFO numpyish: 741 ms
INFO numpyish: end.
24000.0 pairs
INFO pairlist_py: Neighboring pair list by pairlist in pure python.
INFO pairlist_py: 125 ms
INFO pairlist_py: end.
24000 pairs
INFO pairlist_c: Neighboring pair list by pairlist in c.
INFO pairlist_c: end.
INFO pairlist_c: 16 ms
24000 pairs
import pairlist as pl
from fcc import FaceCenteredCubic
from logging import getLogger, basicConfig, INFO, DEBUG
from decorator import timeit, banner
import numpy as np
from pairlist import pairs_py, pairs2_py
basicConfig(level=INFO, format="%(levelname)s %(message)s")
logger = getLogger()
logger.debug("Debug mode.")
@banner
@timeit
def crude(lattice, cell, rc=1.1):
"Neighboring pair list by a crude double loop."
rc2 = rc**2
count = 0
for i in range(len(lattice)):
for j in range(i):
d = lattice[i] - lattice[j]
d -= np.floor(d + 0.5)
d = d @ cell
if d @ d < rc2:
count += 1
return count
@banner
@timeit
def numpyish(lattice, cell, rc=1.1):
"Neighboring pair list by numpy fancy array."
# cross-differences
M = lattice[:, None, :] - lattice[None, :, :]
# wrap
M -= np.floor(M + 0.5)
# in absolute coordinate
M = M @ cell
d = (M * M).sum(2)
return d[(d < rc**2) & (0 < d)].shape[0] / 2
@banner
@timeit
def pairlist_py(lattice, cell, rc=1.1):
"Neighboring pair list by pairlist in pure python."
count = 0
for i, j, d in pl.pairs_iter(
lattice, maxdist=rc, cell=cell, _engine=(pairs_py, pairs2_py)
):
count += 1
return count
@timeit
@banner
def pairlist_c(lattice, cell, rc=1.1):
"Neighboring pair list by pairlist in c."
count = 0
for i, j, d in pl.pairs_iter(lattice, maxdist=rc, cell=cell):
count += 1
return count
lattice, cell = FaceCenteredCubic(10)
print(crude(lattice, cell), "pairs")
print(numpyish(lattice, cell), "pairs")
print(pairlist_py(lattice, cell), "pairs")
print(pairlist_c(lattice, cell), "pairs")
A simple cell division algorithm is implemented.
It requires GenIce to make the test data.
% make test
FAQs
Generate neighbor list for the particles in a periodic boundary cell.
We found that pairlist demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.