Interface.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_runtime_api.h>
  20. #include <vector_functions.h>
  21. #include "../CudaUtils.h"
  22. typedef __global__ void (*CudaKernelProc)();
  23. struct CudaInternalAPI
  24. {
  25.     // Variables
  26.     int numAtomsPerKernel; // How many atoms can be processed by one kernel call
  27.     // Functions
  28.     void (*setGridMap)(const int3 *numGridPoints, const int3 *numGridPointsDiv2,
  29.                        const float *gridSpacing, float **deviceEnergies, cudaStream_t stream);
  30.     void (*setDistDepDielTexture)(const cudaArray *ptr, const cudaChannelFormatDesc *desc);
  31.     void (*setDistDepDielLookUpTable)(float **devicePtr, cudaStream_t stream);
  32.     void (*setSlice)(const int *zIndex, cudaStream_t stream);
  33.     void (*setAtoms)(const int *numAtoms, const float4 *atoms, cudaStream_t stream);
  34.     CudaKernelProc (*getKernelProc)(bool distDepDiel, DielectricKind dddKind, bool calcSlicesSeparately, bool unrollLoop);
  35.     void (*callKernel)(CudaKernelProc kernel, const dim3 &grid, const dim3 &block, cudaStream_t stream);
  36. };
  37. // This function sets the CudaInternalAPI structure
  38. void getCudaInternalAPI(DielectricKind dddKind, CudaInternalAPI &api);
  39. ///////////////////////////////////////////////////////////////////////////////////////////////////
  40. #define CUDA_SAFE_CALL(call) checkCudaError((call), __FILE__, __LINE__, __FUNCTION__, #call)
  41. #define CUDA_SAFE_KERNEL(call) checkCudaError(((call), cudaGetLastError()), __FILE__, __LINE__, __FUNCTION__, #call)
  42. void checkCudaError(cudaError e, const char *file, int line, const char *func, const char *code);