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

并行计算

开发平台:

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. #include <cstdio>
  19. #include <cstring>
  20. #include "StandardKernels.h"
  21. #include "DDDConstMemKernels.h"
  22. #include "../../Exceptions.h"
  23. void getCudaInternalAPI(DielectricKind dddKind, CudaInternalAPI &api)
  24. {
  25.     if (dddKind != DistanceDependentDiel_ConstMem)
  26.     {
  27.         api.numAtomsPerKernel           = STD_NUM_ATOMS_PER_KERNEL;
  28.         api.setDistDepDielTexture       = stdSetDistDepDielTexture;
  29.         api.setDistDepDielLookUpTable   = stdSetDistDepDielLookUpTable;
  30.         api.setGridMap                  = stdSetGridMap;
  31.         api.setSlice                    = stdSetSlice;
  32.         api.setAtoms                    = stdSetAtoms;
  33.         api.getKernelProc               = stdGetKernelProc;
  34.         api.callKernel                  = stdCallKernel;
  35.     }
  36.     else
  37.     {
  38.         api.numAtomsPerKernel           = DDDCM_NUM_ATOMS_PER_KERNEL;
  39.         api.setDistDepDielTexture       = dddcmSetDistDepDielTexture;
  40.         api.setDistDepDielLookUpTable   = dddcmSetDistDepDielLookUpTable;
  41.         api.setGridMap                  = dddcmSetGridMap;
  42.         api.setSlice                    = dddcmSetSlice;
  43.         api.setAtoms                    = dddcmSetAtoms;
  44.         api.getKernelProc               = dddcmGetKernelProc;
  45.         api.callKernel                  = dddcmCallKernel;
  46.     }
  47. }
  48. void checkCudaError(cudaError e, const char *file, int line, const char *func, const char *code)
  49. {
  50.     if (e != cudaSuccess)
  51.     {
  52.         const char *str = cudaGetErrorString(e);
  53.         fprintf(stderr, "CUDA error: '%s'n"
  54.                         "        in file '%s'n"
  55.                         "        in line %in"
  56.                         "        in function '%s'n"
  57.                         "        in code '%s'n", str, file, line, func, code);
  58.         if (strstr(str, "launch fail"))
  59.             throw ExitProgram(0xbad);
  60.     }
  61. }