Extended SIMD, implementation for Intel MIC
[alexxy/gromacs.git] / src / gromacs / gpu_utils / oclutils.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2014,2015, by the GROMACS development team, led by
5  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6  * and including many others, as listed in the AUTHORS file in the
7  * top-level source directory and at http://www.gromacs.org.
8  *
9  * GROMACS is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1
12  * of the License, or (at your option) any later version.
13  *
14  * GROMACS is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with GROMACS; if not, see
21  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23  *
24  * If you want to redistribute modifications to GROMACS, please
25  * consider that scientific software is very special. Version
26  * control is crucial - bugs must be traceable. We will be happy to
27  * consider code for inclusion in the official distribution, but
28  * derived work must not be called official GROMACS. Details are found
29  * in the README & COPYING files - if they are missing, get the
30  * official version at http://www.gromacs.org.
31  *
32  * To help us fund GROMACS development, we humbly ask that you cite
33  * the research papers on the package. Check out http://www.gromacs.org.
34  */
35 /*! \libinternal \file
36  *  \brief Declare utility routines for OpenCL
37  *
38  *  \author Anca Hamuraru <anca@streamcomputing.eu>
39  *  \inlibraryapi
40  */
41 #ifndef GMX_GPU_UTILS_OCLUTILS_H
42 #define GMX_GPU_UTILS_OCLUTILS_H
43
44 /*! \brief Declare to OpenCL SDKs that we intend to use OpenCL API
45    features that were deprecated in 2.0, so that they don't warn about
46    it. */
47 #define CL_USE_DEPRECATED_OPENCL_2_0_APIS
48 #ifdef __APPLE__
49 #    include <OpenCL/opencl.h>
50 #else
51 #    include <CL/opencl.h>
52 #endif
53
54 /*! \brief OpenCL vendor IDs */
55 typedef enum {
56     OCL_VENDOR_NVIDIA = 0,
57     OCL_VENDOR_AMD,
58     OCL_VENDOR_INTEL,
59     OCL_VENDOR_UNKNOWN
60 } ocl_vendor_id_t;
61
62 /*! \internal \brief OpenCL GPU device identificator
63  * An OpenCL device is identified by its ID.
64  * The platform ID is also included for caching reasons.
65  */
66 typedef struct
67 {
68     cl_platform_id      ocl_platform_id; /**< Platform ID */
69     cl_device_id        ocl_device_id;   /**< Device ID */
70 } ocl_gpu_id_t;
71
72 /*! \internal \brief OpenCL GPU information
73  *
74  * \todo Move context and program outside this data structure.
75  * They are specific to a certain usage of the device (e.g. with/without OpenGL
76  * interop) and do not provide general device information as the data structure
77  * name indicates.
78  *
79  * TODO Document fields
80  */
81 struct gmx_device_info_t
82 {
83     //! @cond Doxygen_Suppress
84     ocl_gpu_id_t        ocl_gpu_id;
85     char                device_name[256];
86     char                device_version[256];
87     char                device_vendor[256];
88     int                 compute_units;
89     int                 adress_bits;
90     int                 stat;
91     ocl_vendor_id_t     vendor_e;
92
93     cl_context          context;
94     cl_program          program;
95     //! @endcond Doxygen_Suppress
96
97 };
98
99 #if !defined(NDEBUG)
100 /* Debugger callable function that prints the name of a kernel function pointer */
101 cl_int dbg_ocl_kernel_name(const cl_kernel kernel);
102 cl_int dbg_ocl_kernel_name_address(void* kernel);
103 #endif
104
105
106 /*! \brief Launches asynchronous host to device memory copy. */
107 int ocl_copy_H2D_async(cl_mem d_dest, void * h_src,
108                        size_t offset, size_t bytes,
109                        cl_command_queue command_queue,
110                        cl_event *copy_event);
111
112 /*! \brief Launches asynchronous device to host memory copy. */
113 int ocl_copy_D2H_async(void * h_dest, cl_mem d_src,
114                        size_t offset, size_t bytes,
115                        cl_command_queue command_queue,
116                        cl_event *copy_event);
117
118 /*! \brief Launches synchronous host to device memory copy. */
119 int ocl_copy_H2D(cl_mem d_dest, void * h_src,
120                  size_t offset, size_t bytes,
121                  cl_command_queue command_queue);
122
123 /*! \brief Allocate host memory in malloc style */
124 void ocl_pmalloc(void **h_ptr, size_t nbytes);
125
126 /*! \brief Free host memory in malloc style */
127 void ocl_pfree(void *h_ptr);
128
129 #endif