| """ |
| Copyright (c) Facebook, Inc. and its affiliates. |
| |
| This source code is licensed under the MIT license found in the |
| LICENSE file in the root directory of this source tree. |
| """ |
|
|
| import os |
|
|
| import numpy as np |
| import pytest |
| from ase.io import read |
|
|
| from ocpmodels.common.utils import get_pbc_distances |
| from ocpmodels.datasets import data_list_collater |
| from ocpmodels.preprocessing import AtomsToGraphs |
|
|
|
|
| @pytest.fixture(scope="class") |
| def load_data(request): |
| atoms = read( |
| os.path.join(os.path.dirname(os.path.abspath(__file__)), "atoms.json"), |
| index=0, |
| format="json", |
| ) |
| a2g = AtomsToGraphs( |
| max_neigh=12, |
| radius=6, |
| r_energy=True, |
| r_forces=True, |
| r_distances=True, |
| ) |
| data_list = a2g.convert_all([atoms]) |
| request.cls.data = data_list[0] |
|
|
|
|
| @pytest.mark.usefixtures("load_data") |
| class TestPBC: |
| def test_pbc_distances(self): |
| data = self.data |
| batch = data_list_collater([data] * 5) |
| out = get_pbc_distances( |
| batch.pos, |
| batch.edge_index, |
| batch.cell, |
| batch.cell_offsets, |
| batch.neighbors, |
| ) |
| edge_index, pbc_distances = out["edge_index"], out["distances"] |
|
|
| np.testing.assert_array_equal( |
| batch.edge_index, |
| edge_index, |
| ) |
| np.testing.assert_array_almost_equal(batch.distances, pbc_distances) |
|
|