2012-08-04 02:51:27 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// Copyright 2013 Pixar
|
2012-08-04 02:51:27 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "Apache License")
|
|
|
|
// with the following modification; you may not use this file except in
|
|
|
|
// compliance with the Apache License and the following modification to it:
|
|
|
|
// Section 6. Trademarks. is deleted and replaced with:
|
2012-08-04 02:51:27 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// 6. Trademarks. This License does not grant permission to use the trade
|
|
|
|
// names, trademarks, service marks, or product names of the Licensor
|
|
|
|
// and its affiliates, except as required to comply with Section 4(c) of
|
|
|
|
// the License and to reproduce the content of the NOTICE file.
|
2012-08-04 02:51:27 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// You may obtain a copy of the Apache License at
|
2012-08-04 02:51:27 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2013-07-18 21:19:50 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the Apache License with the above modification is
|
|
|
|
// distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
// KIND, either express or implied. See the Apache License for the specific
|
|
|
|
// language governing permissions and limitations under the Apache License.
|
2012-08-04 02:51:27 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
#ifndef OSD_EXAMPLE_CL_INIT_H
|
|
|
|
#define OSD_EXAMPLE_CL_INIT_H
|
|
|
|
|
|
|
|
#if defined(_WIN32)
|
|
|
|
#include <windows.h>
|
|
|
|
#include <CL/opencl.h>
|
|
|
|
#elif defined(__APPLE__)
|
|
|
|
#include <OpenGL/OpenGL.h>
|
|
|
|
#include <OpenCL/opencl.h>
|
2012-06-21 19:30:12 +00:00
|
|
|
#else
|
2012-12-11 01:15:13 +00:00
|
|
|
#include <GL/glx.h>
|
|
|
|
#include <CL/opencl.h>
|
2012-06-21 19:30:12 +00:00
|
|
|
#endif
|
2012-06-21 01:51:16 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
#include <cstdio>
|
2012-06-12 23:28:17 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
static bool initCL(cl_context *clContext, cl_command_queue *clQueue)
|
|
|
|
{
|
|
|
|
cl_int ciErrNum;
|
2012-06-12 23:28:17 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
cl_platform_id cpPlatform = 0;
|
|
|
|
cl_uint num_platforms;
|
|
|
|
ciErrNum = clGetPlatformIDs(0, NULL, &num_platforms);
|
|
|
|
if (ciErrNum != CL_SUCCESS) {
|
|
|
|
printf("Error %d in clGetPlatformIDs call.\n", ciErrNum);
|
|
|
|
return false;
|
2012-06-12 23:28:17 +00:00
|
|
|
}
|
2012-12-11 01:15:13 +00:00
|
|
|
if (num_platforms == 0) {
|
|
|
|
printf("No OpenCL platform found.\n");
|
|
|
|
return false;
|
2012-06-12 16:28:00 +00:00
|
|
|
}
|
2014-02-24 05:21:25 +00:00
|
|
|
cl_platform_id *clPlatformIDs = new cl_platform_id[num_platforms];
|
2012-12-11 01:15:13 +00:00
|
|
|
ciErrNum = clGetPlatformIDs(num_platforms, clPlatformIDs, NULL);
|
|
|
|
char chBuffer[1024];
|
|
|
|
for (cl_uint i = 0; i < num_platforms; ++i) {
|
|
|
|
ciErrNum = clGetPlatformInfo(clPlatformIDs[i], CL_PLATFORM_NAME, 1024, chBuffer,NULL);
|
|
|
|
if (ciErrNum == CL_SUCCESS) {
|
|
|
|
cpPlatform = clPlatformIDs[i];
|
|
|
|
}
|
2012-06-12 16:28:00 +00:00
|
|
|
}
|
2012-12-11 01:15:13 +00:00
|
|
|
|
|
|
|
#if defined(_WIN32)
|
|
|
|
cl_context_properties props[] = {
|
|
|
|
CL_GL_CONTEXT_KHR, (cl_context_properties)wglGetCurrentContext(),
|
|
|
|
CL_WGL_HDC_KHR, (cl_context_properties)wglGetCurrentDC(),
|
|
|
|
CL_CONTEXT_PLATFORM, (cl_context_properties)cpPlatform,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
#elif defined(__APPLE__)
|
|
|
|
CGLContextObj kCGLContext = CGLGetCurrentContext();
|
|
|
|
CGLShareGroupObj kCGLShareGroup = CGLGetShareGroup(kCGLContext);
|
|
|
|
cl_context_properties props[] = {
|
|
|
|
CL_CONTEXT_PROPERTY_USE_CGL_SHAREGROUP_APPLE, (cl_context_properties)kCGLShareGroup,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
#else
|
|
|
|
cl_context_properties props[] = {
|
|
|
|
CL_GL_CONTEXT_KHR, (cl_context_properties)glXGetCurrentContext(),
|
|
|
|
CL_GLX_DISPLAY_KHR, (cl_context_properties)glXGetCurrentDisplay(),
|
|
|
|
CL_CONTEXT_PLATFORM, (cl_context_properties)cpPlatform,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
delete[] clPlatformIDs;
|
2012-06-12 23:28:17 +00:00
|
|
|
|
2014-02-24 05:21:25 +00:00
|
|
|
#if defined(__APPLE__)
|
|
|
|
*clContext = clCreateContext(props, 0, NULL, clLogMessagesToStdoutAPPLE, NULL, &ciErrNum);
|
2012-12-11 01:15:13 +00:00
|
|
|
if (ciErrNum != CL_SUCCESS) {
|
|
|
|
printf("Error %d in clCreateContext\n", ciErrNum);
|
|
|
|
return false;
|
|
|
|
}
|
2012-06-12 16:28:00 +00:00
|
|
|
|
2014-02-24 05:21:25 +00:00
|
|
|
size_t devicesSize = 0;
|
|
|
|
clGetGLContextInfoAPPLE(*clContext, kCGLContext, CL_CGL_DEVICES_FOR_SUPPORTED_VIRTUAL_SCREENS_APPLE, 0, NULL, &devicesSize);
|
|
|
|
int numDevices = int(devicesSize / sizeof(cl_device_id));
|
|
|
|
if (numDevices == 0) {
|
|
|
|
printf("No sharable devices.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
cl_device_id *clDevices = new cl_device_id[numDevices];
|
|
|
|
clGetGLContextInfoAPPLE(*clContext, kCGLContext, CL_CGL_DEVICES_FOR_SUPPORTED_VIRTUAL_SCREENS_APPLE, numDevices * sizeof(cl_device_id), clDevices, NULL);
|
|
|
|
#else
|
|
|
|
cl_uint numDevices = 0;
|
|
|
|
clGetDeviceIDs(cpPlatform, CL_DEVICE_TYPE_GPU, 0, NULL, &numDevices);
|
|
|
|
if (numDevices == 0) {
|
|
|
|
printf("No sharable devices.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
cl_device_id *clDevices = new cl_device_id[numDevices];
|
|
|
|
clGetDeviceIDs(cpPlatform, CL_DEVICE_TYPE_GPU, numDevices, clDevices, NULL);
|
|
|
|
|
|
|
|
*clContext = clCreateContext(props, numDevices, clDevices, NULL, NULL, &ciErrNum);
|
|
|
|
if (ciErrNum != CL_SUCCESS) {
|
|
|
|
printf("Error %d in clCreateContext\n", ciErrNum);
|
|
|
|
delete[] clDevices;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
*clQueue = clCreateCommandQueue(*clContext, clDevices[0], 0, &ciErrNum);
|
|
|
|
delete[] clDevices;
|
2012-12-11 01:15:13 +00:00
|
|
|
if (ciErrNum != CL_SUCCESS) {
|
|
|
|
printf("Error %d in clCreateCommandQueue\n", ciErrNum);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2012-06-12 16:28:00 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
static void uninitCL(cl_context clContext, cl_command_queue clQueue)
|
|
|
|
{
|
|
|
|
clReleaseCommandQueue(clQueue);
|
|
|
|
clReleaseContext(clContext);
|
|
|
|
}
|
2012-06-12 16:28:00 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
#endif // OSD_EXAMPLE_CL_INIT_H
|