Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92371307
neighbor_cuda.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Nov 19, 18:48
Size
1 KB
Mime Type
text/x-c
Expires
Thu, Nov 21, 18:48 (2 d)
Engine
blob
Format
Raw Data
Handle
22410411
Attached To
rLAMMPS lammps
neighbor_cuda.h
View Options
/* ----------------------------------------------------------------------
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
http://lammps.sandia.gov, Sandia National Laboratories
Steve Plimpton, sjplimp@sandia.gov
Copyright (2003) Sandia Corporation. Under the terms of Contract
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
certain rights in this software. This software is distributed under
the GNU General Public License.
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#ifndef LMP_NEIGHBOR_CUDA_H
#define LMP_NEIGHBOR_CUDA_H
#include "neighbor.h"
namespace LAMMPS_NS {
class NeighborCuda : public Neighbor {
public:
NeighborCuda(class LAMMPS *);
void init();
int check_distance();
void build();
private:
class Cuda *cuda;
void choose_build(int, class NeighRequest *);
typedef void (NeighborCuda::*PairPtr)(class NeighList *);
void full_nsq_cuda(class NeighList *);
void full_bin_cuda(class NeighList *);
};
}
#endif
Event Timeline
Log In to Comment