CudaConstantMemory.h
上传用户:chinafayin
上传日期:2022-04-05
资源大小:153k
文件大小:2k
源码类别:

并行计算

开发平台:

Visual C++

  1. /*
  2.     FastGrid (formerly AutoGrid)
  3.     Copyright (C) 2009 The Scripps Research Institute. All rights reserved.
  4.     Copyright (C) 2009 Masaryk University. All rights reserved.
  5.     AutoGrid is a Trade Mark of The Scripps Research Institute.
  6.     This program is free software; you can redistribute it and/or
  7.     modify it under the terms of the GNU General Public License
  8.     as published by the Free Software Foundation; either version 2
  9.     of the License, or (at your option) any later version.
  10.     This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.     You should have received a copy of the GNU General Public License
  15.     along with this program; if not, write to the Free Software
  16.     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  17. */
  18. #pragma once
  19. #include "cuda_internal/Interface.h"
  20. #include "../autogrid.h"
  21. // This class takes care of uploading data asynchronously to constant memory on the GPU,
  22. // which requires storing the data in page-locked system memory first.
  23. class CudaConstantMemory
  24. {
  25. public:
  26.     CudaConstantMemory(cudaStream_t stream, CudaInternalAPI *api);
  27.     ~CudaConstantMemory();
  28.     void initDistDepDielLookUpTable(const double *epsilon);
  29.     void setGridMapParameters(const Vec3i &numGridPointsDiv2, double gridSpacing,
  30.                               const Vec3i &numGridPointsPadded, float *energiesDevice);
  31.     // this must be called only once and after setGridMapParameters
  32.     void initAtoms(const Vec4d *atoms, int numAtoms, bool calculateSlicesSeparately); 
  33.     int getNumAtomSubsets() const { return numAtomSubsets; } // should be called after initAtoms
  34.     void setZSlice(int z); // should be called before setAtomConstMem if used at all
  35.     void setAtomConstMem(int atomSubsetIndex); // copies atoms to constant memory
  36. private:
  37.     struct Params
  38.     {
  39.         int3 numGridPointsDiv2;
  40.         int3 numGridPointsPadded;
  41.         float gridSpacing;
  42.         float *energiesDevice, *epsilonDevice;
  43.     };
  44.     struct AtomsConstMem;
  45.     CudaInternalAPI *api;
  46.     Params *paramsHost, params;
  47.     AtomsConstMem *atomsHost;
  48.     cudaStream_t stream;
  49.     int *zIndexArray;
  50.     int numAtomSubsets;
  51.     int currentZSlice;
  52.     float *epsilonHost;
  53.     void initZIndexArray(); 
  54. };