From 813cb58f2b47a8015020b78f3dcee5188d837f56 Mon Sep 17 00:00:00 2001 From: Michael Howard Date: Mon, 3 Jun 2024 07:53:20 -0500 Subject: [PATCH] Remove unused CUDA files for pair potentials --- src/PairPotentialAshbaugh.cu | 18 ------------------ src/PairPotentialColloid.cu | 18 ------------------ src/PairPotentialHertz.cu | 18 ------------------ 3 files changed, 54 deletions(-) delete mode 100644 src/PairPotentialAshbaugh.cu delete mode 100644 src/PairPotentialColloid.cu delete mode 100644 src/PairPotentialHertz.cu diff --git a/src/PairPotentialAshbaugh.cu b/src/PairPotentialAshbaugh.cu deleted file mode 100644 index fdeccfde..00000000 --- a/src/PairPotentialAshbaugh.cu +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright (c) 2018-2020, Michael P. Howard -// Copyright (c) 2021-2024, Auburn University -// Part of azplugins, released under the BSD 3-Clause License. - -#include "PairPotentials.cuh" - -namespace azplugins - { -namespace gpu - { - -//! Kernel driver for Ashbaugh-Hatch pair potential -template cudaError_t compute_pair_potential( - const pair_args_t& pair_args, - const typename azplugins::detail::PairEvaluatorAshbaugh::param_type* d_params); - - } // end namespace gpu - } // end namespace azplugins diff --git a/src/PairPotentialColloid.cu b/src/PairPotentialColloid.cu deleted file mode 100644 index 017f26b0..00000000 --- a/src/PairPotentialColloid.cu +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright (c) 2018-2020, Michael P. Howard -// Copyright (c) 2021-2024, Auburn University -// Part of azplugins, released under the BSD 3-Clause License. - -#include "PairPotentials.cuh" - -namespace azplugins - { -namespace gpu - { - -//! Kernel driver for colloid (integrated Lennard-Jones) pair potential -template cudaError_t compute_pair_potential( - const pair_args_t& pair_args, - const typename azplugins::detail::PairEvaluatorColloid::param_type* d_params); - - } // end namespace gpu - } // end namespace azplugins diff --git a/src/PairPotentialHertz.cu b/src/PairPotentialHertz.cu deleted file mode 100644 index d2d03d00..00000000 --- a/src/PairPotentialHertz.cu +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright (c) 2018-2020, Michael P. Howard -// Copyright (c) 2021-2024, Auburn University -// Part of azplugins, released under the BSD 3-Clause License. - -#include "PairPotentials.cuh" - -namespace azplugins - { -namespace gpu - { - -//! Kernel driver for Hertz pair potential -template cudaError_t compute_pair_potential( - const pair_args_t& pair_args, - const typename azplugins::detail::PairEvaluatorHertz::param_type* d_params); - - } // end namespace gpu - } // end namespace azplugins