Rework AI neighborlist slop from scratch
This commit is contained in:
parent
8dec472929
commit
f3e701236e
3 changed files with 35 additions and 273 deletions
8
kernels/utils.cuh
Normal file
8
kernels/utils.cuh
Normal file
|
@ -0,0 +1,8 @@
|
|||
#ifndef UTILS_CUH
|
||||
#define UTILS_CUH
|
||||
|
||||
namespace utils {
|
||||
__device__ __host__ inline int max(int a, int b) { return (a > b) ? a : b; }
|
||||
} // namespace utils
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue