CudaGridMap.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 implements a gridmap representation on the GPU and takes care of padding.
  22. class CudaGridMap
  23. {
  24. public:
  25.     // The constructor creates the gridmap, and copies it to the GPU (asynchronous)
  26.     CudaGridMap(const Vec3i &numGridPoints, const Vec3i &numGridPointsPadded, const double *inputEnergies, cudaStream_t stream);
  27.     ~CudaGridMap();
  28.     void copyFromDeviceToHost(); // Copies the gridmap from the GPU to page-locked system memory (asynchronous)
  29.     void readFromHost(double *outputEnergies); // Saves the gridmap into outputEnergies
  30.     float *getEnergiesDevicePtr() { return energiesDevice; }
  31. private:
  32.     cudaStream_t stream;
  33.     Vec3i numGridPoints, numGridPointsPadded;
  34.     float *energiesDevice, *energiesHost;
  35.     void copyGridMapPadded(float *dst,       const Vec3i &numGridPointsDst,
  36.                            const float *src, const Vec3i &numGridPointsSrc,
  37.                            cudaMemcpyKind kind);
  38. };