2020-08-18 14:27:28 +02:00
|
|
|
/*
|
2022-09-05 10:39:42 +02:00
|
|
|
* Copyright (C) 2022 NHR@FAU, University Erlangen-Nuremberg.
|
|
|
|
* All rights reserved. This file is part of MD-Bench.
|
|
|
|
* Use of this source code is governed by a LGPL-3.0
|
|
|
|
* license that can be found in the LICENSE file.
|
2020-08-18 14:27:28 +02:00
|
|
|
*/
|
|
|
|
#include <atom.h>
|
|
|
|
#include <parameter.h>
|
|
|
|
|
|
|
|
#ifndef __NEIGHBOR_H_
|
|
|
|
#define __NEIGHBOR_H_
|
2023-03-23 00:58:25 +01:00
|
|
|
// Interaction masks from GROMACS, things to remember (maybe these confused just me):
|
|
|
|
// 1. These are not "exclusion" masks as the name suggests in GROMACS, but rather
|
|
|
|
// interaction masks (1 = interaction, 0 = no interaction)
|
|
|
|
// 2. These are inverted (maybe because that is how you use in AVX2/AVX512 masking),
|
|
|
|
// so read them from right to left (least significant to most significant bit)
|
|
|
|
// All interaction mask is the same for all kernels
|
|
|
|
#define NBNXN_INTERACTION_MASK_ALL 0xffffffffU
|
|
|
|
// 4x4 kernel diagonal mask
|
|
|
|
#define NBNXN_INTERACTION_MASK_DIAG 0x08ceU
|
|
|
|
// 4x2 kernel diagonal masks
|
|
|
|
#define NBNXN_INTERACTION_MASK_DIAG_J2_0 0x0002U
|
|
|
|
#define NBNXN_INTERACTION_MASK_DIAG_J2_1 0x002fU
|
|
|
|
// 4x8 kernel diagonal masks
|
|
|
|
#define NBNXN_INTERACTION_MASK_DIAG_J8_0 0xf0f8fcfeU
|
|
|
|
#define NBNXN_INTERACTION_MASK_DIAG_J8_1 0x0080c0e0U
|
|
|
|
|
2020-08-18 14:27:28 +02:00
|
|
|
typedef struct {
|
|
|
|
int every;
|
|
|
|
int ncalls;
|
|
|
|
int maxneighs;
|
|
|
|
int* numneigh;
|
2023-03-28 18:04:18 +02:00
|
|
|
int* numneigh_masked;
|
2022-03-22 23:47:05 +01:00
|
|
|
int half_neigh;
|
2023-03-30 01:57:26 +02:00
|
|
|
int* neighbors;
|
|
|
|
unsigned int* neighbors_imask;
|
2020-08-18 14:27:28 +02:00
|
|
|
} Neighbor;
|
|
|
|
|
|
|
|
extern void initNeighbor(Neighbor*, Parameter*);
|
2022-01-27 03:07:31 +01:00
|
|
|
extern void setupNeighbor(Parameter*, Atom*);
|
2020-08-18 14:27:28 +02:00
|
|
|
extern void binatoms(Atom*);
|
2022-01-27 03:07:31 +01:00
|
|
|
extern void buildNeighbor(Atom*, Neighbor*);
|
2022-02-28 17:20:39 +01:00
|
|
|
extern void pruneNeighbor(Parameter*, Atom*, Neighbor*);
|
2021-11-03 00:57:24 +01:00
|
|
|
extern void sortAtom(Atom*);
|
2022-01-27 03:07:31 +01:00
|
|
|
extern void buildClusters(Atom*);
|
2022-03-10 22:33:41 +01:00
|
|
|
extern void defineJClusters(Atom*);
|
2022-01-27 03:07:31 +01:00
|
|
|
extern void binClusters(Atom*);
|
|
|
|
extern void updateSingleAtoms(Atom*);
|
2020-08-18 14:27:28 +02:00
|
|
|
#endif
|