Rework AI neighborlist slop from scratch

This commit is contained in:
Alex Selimov 2025-09-19 23:19:09 -04:00
parent 8dec472929
commit f3e701236e
Signed by: aselimov
GPG key ID: 3DDB9C3E023F1F31
3 changed files with 35 additions and 273 deletions

8
kernels/utils.cuh Normal file
View 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