Merge branch 'maint'
[hoomd-blue.git] / libhoomd / computes_gpu / CGCMMForceComputeGPU.h
blobadd94b5a9e9ea077e6973399d50b81aadd194583
1 /*
2 Highly Optimized Object-oriented Many-particle Dynamics -- Blue Edition
3 (HOOMD-blue) Open Source Software License Copyright 2009-2014 The Regents of
4 the University of Michigan All rights reserved.
6 HOOMD-blue may contain modifications ("Contributions") provided, and to which
7 copyright is held, by various Contributors who have granted The Regents of the
8 University of Michigan the right to modify and/or distribute such Contributions.
10 You may redistribute, use, and create derivate works of HOOMD-blue, in source
11 and binary forms, provided you abide by the following conditions:
13 * Redistributions of source code must retain the above copyright notice, this
14 list of conditions, and the following disclaimer both in the code and
15 prominently in any materials provided with the distribution.
17 * Redistributions in binary form must reproduce the above copyright notice, this
18 list of conditions, and the following disclaimer in the documentation and/or
19 other materials provided with the distribution.
21 * All publications and presentations based on HOOMD-blue, including any reports
22 or published results obtained, in whole or in part, with HOOMD-blue, will
23 acknowledge its use according to the terms posted at the time of submission on:
24 http://codeblue.umich.edu/hoomd-blue/citations.html
26 * Any electronic documents citing HOOMD-Blue will link to the HOOMD-Blue website:
27 http://codeblue.umich.edu/hoomd-blue/
29 * Apart from the above required attributions, neither the name of the copyright
30 holder nor the names of HOOMD-blue's contributors may be used to endorse or
31 promote products derived from this software without specific prior written
32 permission.
34 Disclaimer
36 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS ``AS IS'' AND
37 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
38 WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND/OR ANY
39 WARRANTIES THAT THIS SOFTWARE IS FREE OF INFRINGEMENT ARE DISCLAIMED.
41 IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
42 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
43 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
44 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
45 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
46 OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
47 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
50 // Maintainer: akohlmey
52 #include "CGCMMForceCompute.h"
53 #include "NeighborList.h"
54 #include "CGCMMForceGPU.cuh"
56 #include <boost/shared_ptr.hpp>
58 /*! \file CGCMMForceComputeGPU.h
59 \brief Declares the class CGCMMForceComputeGPU
62 #ifdef NVCC
63 #error This header cannot be compiled by nvcc
64 #endif
66 #ifndef __CGCMMFORCECOMPUTEGPU_H__
67 #define __CGCMMFORCECOMPUTEGPU_H__
69 //! Computes CGCMM forces on each particle using the GPU
70 /*! Calculates the same forces as CGCMMForceCompute, but on the GPU.
72 The GPU kernel for calculating the forces is in cgcmmforcesum_kernel.cu.
73 \ingroup computes
75 class CGCMMForceComputeGPU : public CGCMMForceCompute
77 public:
78 //! Constructs the compute
79 CGCMMForceComputeGPU(boost::shared_ptr<SystemDefinition> sysdef, boost::shared_ptr<NeighborList> nlist, Scalar r_cut);
81 //! Destructor
82 virtual ~CGCMMForceComputeGPU();
84 //! Set the parameters for a single type pair
85 virtual void setParams(unsigned int typ1, unsigned int typ2, Scalar lj12, Scalar lj9, Scalar lj6, Scalar lj4);
87 //! Sets the block size to run at
88 void setBlockSize(int block_size);
90 protected:
91 GPUArray<Scalar4> m_coeffs; //!< Coefficients for the force
92 int m_block_size; //!< The block size to run on the GPU
94 //! Actually compute the forces
95 virtual void computeForces(unsigned int timestep);
98 //! Exports the CGCMMForceComputeGPU class to python
99 void export_CGCMMForceComputeGPU();
101 #endif