c70ebce4c1
Signed-off-by: Rafael Ravedutti <rafaelravedutti@gmail.com>
21 lines
549 B
C
21 lines
549 B
C
/*
|
|
* 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.
|
|
*/
|
|
#include <atom.h>
|
|
#include <parameter.h>
|
|
|
|
#ifndef __PBC_H_
|
|
#define __PBC_H_
|
|
extern void initPbc();
|
|
extern void cpuUpdatePbc(Atom*, Parameter*, int);
|
|
extern void updateAtomsPbc(Atom*, Parameter*);
|
|
extern void setupPbc(Atom*, Parameter*);
|
|
|
|
#ifdef CUDA_TARGET
|
|
extern void cudaUpdatePbc(Atom*, Parameter*, int);
|
|
#endif
|
|
#endif
|