/usr/include/af/opencl.h is in libarrayfire-dev 3.2.2+dfsg1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 | /*******************************************************
* Copyright (c) 2014, ArrayFire
* All rights reserved.
*
* This file is distributed under 3-clause BSD license.
* The complete license agreement can be obtained at:
* http://arrayfire.com/licenses/BSD-3-Clause
********************************************************/
#if defined(__APPLE__) || defined(__MACOSX)
#include <OpenCL/cl.h>
#else
#include <CL/cl.h>
#endif
#include <af/defines.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
\ingroup opencl_mat
@{
*/
/**
Get a handle to ArrayFire's OpenCL context
\param[out] ctx the current context being used by ArrayFire
\param[in] retain if true calls clRetainContext prior to returning the context
\returns \ref af_err error code
\note Set \p retain to true if this value will be passed to a cl::Context constructor
*/
AFAPI af_err afcl_get_context(cl_context *ctx, const bool retain);
/**
Get a handle to ArrayFire's OpenCL command queue
\param[out] queue the current command queue being used by ArrayFire
\param[in] retain if true calls clRetainCommandQueue prior to returning the context
\returns \ref af_err error code
\note Set \p retain to true if this value will be passed to a cl::CommandQueue constructor
*/
AFAPI af_err afcl_get_queue(cl_command_queue *queue, const bool retain);
/**
Get the device ID for ArrayFire's current active device
\param[out] id the cl_device_id of the current device
\returns \ref af_err error code
*/
AFAPI af_err afcl_get_device_id(cl_device_id *id);
#if AF_API_VERSION >= 32
/**
Set ArrayFire's active device based on \p id of type cl_device_id
\param[in] id the cl_device_id of the device to be set as active device
\returns \ref af_err error code
*/
AFAPI af_err afcl_set_device_id(cl_device_id id);
#endif
/**
@}
*/
#ifdef __cplusplus
}
#endif
#ifdef __cplusplus
#include <af/array.h>
#include <af/dim4.hpp>
#include <af/exception.h>
#include <af/device.h>
#include <stdio.h>
namespace afcl
{
/**
*/
/**
\ingroup opencl_mat
@{
*/
/**
Get a handle to ArrayFire's OpenCL context
\param[in] retain if true calls clRetainContext prior to returning the context
\returns the current context being used by ArrayFire
\note Set \p retain to true if this value will be passed to a cl::Context constructor
*/
static inline cl_context getContext(bool retain = false)
{
cl_context ctx;
af_err err = afcl_get_context(&ctx, retain);
if (err != AF_SUCCESS) throw af::exception("Failed to get OpenCL context from arrayfire");
return ctx;
}
/**
Get a handle to ArrayFire's OpenCL command queue
\param[in] retain if true calls clRetainCommandQueue prior to returning the context
\returns the current command queue being used by ArrayFire
\note Set \p retain to true if this value will be passed to a cl::CommandQueue constructor
*/
static inline cl_command_queue getQueue(bool retain = false)
{
cl_command_queue queue;
af_err err = afcl_get_queue(&queue, retain);
if (err != AF_SUCCESS) throw af::exception("Failed to get OpenCL command queue from arrayfire");
return queue;
}
/**
Get the device ID for ArrayFire's current active device
\returns the cl_device_id of the current device
*/
static inline cl_device_id getDeviceId()
{
cl_device_id id;
af_err err = afcl_get_device_id(&id);
if (err != AF_SUCCESS) throw af::exception("Failed to get OpenCL device ID");
return id;
}
#if AF_API_VERSION >= 32
/**
Set ArrayFire's active device based on \p id of type cl_device_id
\param[in] id the cl_device_id of the device to be set as active device
*/
static inline void setDeviceId(cl_device_id id)
{
af_err err = afcl_set_device_id(id);
if (err != AF_SUCCESS) throw af::exception("Failed to set OpenCL device as active device");
}
#endif
/**
Create an af::array object from an OpenCL cl_mem buffer
\param[in] idims the dimensions of the buffer
\param[in] buf the OpenCL memory object
\param[in] type the data type contained in the buffer
\param[in] retain if true, instructs ArrayFire to retain the memory object
\returns an array object created from the OpenCL buffer
\note Set \p retain to true if the memory originates from a cl::Buffer object
*/
static inline af::array array(af::dim4 idims, cl_mem buf, af::dtype type, bool retain=false)
{
const unsigned ndims = (unsigned)idims.ndims();
const dim_t *dims = idims.get();
cl_context context;
cl_int clerr = clGetMemObjectInfo(buf, CL_MEM_CONTEXT, sizeof(cl_context), &context, NULL);
if (clerr != CL_SUCCESS) {
throw af::exception("Failed to get context from cl_mem object \"buf\" ");
}
if (context != getContext()) {
throw(af::exception("Context mismatch between input \"buf\" and arrayfire"));
}
if (retain) clerr = clRetainMemObject(buf);
af_array out;
af_err err = af_device_array(&out, buf, ndims, dims, type);
if (err != AF_SUCCESS || clerr != CL_SUCCESS) {
if (retain && clerr == CL_SUCCESS) clReleaseMemObject(buf);
throw af::exception("Failed to create device array");
}
return af::array(out);
}
/**
Create an af::array object from an OpenCL cl_mem buffer
\param[in] dim0 the length of the first dimension of the buffer
\param[in] buf the OpenCL memory object
\param[in] type the data type contained in the buffer
\param[in] retain if true, instructs ArrayFire to retain the memory object
\returns an array object created from the OpenCL buffer
\note Set \p retain to true if the memory originates from a cl::Buffer object
*/
static inline af::array array(dim_t dim0,
cl_mem buf, af::dtype type, bool retain=false)
{
return afcl::array(af::dim4(dim0), buf, type, retain);
}
/**
Create an af::array object from an OpenCL cl_mem buffer
\param[in] dim0 the length of the first dimension of the buffer
\param[in] dim1 the length of the second dimension of the buffer
\param[in] buf the OpenCL memory object
\param[in] type the data type contained in the buffer
\param[in] retain if true, instructs ArrayFire to retain the memory object
\returns an array object created from the OpenCL buffer
\note Set \p retain to true if the memory originates from a cl::Buffer object
*/
static inline af::array array(dim_t dim0, dim_t dim1,
cl_mem buf, af::dtype type, bool retain=false)
{
return afcl::array(af::dim4(dim0, dim1), buf, type, retain);
}
/**
Create an af::array object from an OpenCL cl_mem buffer
\param[in] dim0 the length of the first dimension of the buffer
\param[in] dim1 the length of the second dimension of the buffer
\param[in] dim2 the length of the third dimension of the buffer
\param[in] buf the OpenCL memory object
\param[in] type the data type contained in the buffer
\param[in] retain if true, instructs ArrayFire to retain the memory object
\returns an array object created from the OpenCL buffer
\note Set \p retain to true if the memory originates from a cl::Buffer object
*/
static inline af::array array(dim_t dim0, dim_t dim1,
dim_t dim2,
cl_mem buf, af::dtype type, bool retain=false)
{
return afcl::array(af::dim4(dim0, dim1, dim2), buf, type, retain);
}
/**
Create an af::array object from an OpenCL cl_mem buffer
\param[in] dim0 the length of the first dimension of the buffer
\param[in] dim1 the length of the second dimension of the buffer
\param[in] dim2 the length of the third dimension of the buffer
\param[in] dim3 the length of the fourth dimension of the buffer
\param[in] buf the OpenCL memory object
\param[in] type the data type contained in the buffer
\param[in] retain if true, instructs ArrayFire to retain the memory object
\returns an array object created from the OpenCL buffer
\note Set \p retain to true if the memory originates from a cl::Buffer object
*/
static inline af::array array(dim_t dim0, dim_t dim1,
dim_t dim2, dim_t dim3,
cl_mem buf, af::dtype type, bool retain=false)
{
return afcl::array(af::dim4(dim0, dim1, dim2, dim3), buf, type, retain);
}
/**
@}
*/
}
namespace af
{
template<> AFAPI cl_mem *array::device() const
{
cl_mem *mem = new cl_mem;
af_err err = af_get_device_ptr((void **)mem, get());
if (err != AF_SUCCESS) throw af::exception("Failed to get cl_mem from array object");
return mem;
}
}
#endif
|