2016-11-19 07:53:11 +08:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2016-12-04 21:49:43 +08:00
|
|
|
|
2014-01-27 01:38:37 +08:00
|
|
|
#ifndef DEVICE_SELECTION_H
|
|
|
|
#define DEVICE_SELECTION_H
|
|
|
|
|
2016-12-04 21:49:43 +08:00
|
|
|
#ifdef USE_OPENCL
|
2014-01-27 01:38:37 +08:00
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define _CRT_SECURE_NO_WARNINGS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#ifdef __APPLE__
|
|
|
|
#include <OpenCL/cl.h>
|
|
|
|
#else
|
|
|
|
#include <CL/cl.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// device type
|
|
|
|
typedef enum {
|
|
|
|
DS_DEVICE_NATIVE_CPU = 0,
|
opencl: Fix some compiler warnings [-Wunused-function]
opencl_device_selection.h contains lots of code which is only used in
openclwrapper.cpp. This results in several compiler warnings:
opencl/opencl_device_selection.h:396:18: warning:
‘ds_status readProfileFromFile(ds_profile*, ds_score_deserializer, const char*)’ defined but not used [-Wunused-function]
opencl/opencl_device_selection.h:257:18: warning:
‘ds_status writeProfileToFile(ds_profile*, ds_score_serializer, const char*)’ defined but not used [-Wunused-function]
opencl/opencl_device_selection.h:196:18: warning:
‘ds_status profileDevices(ds_profile*, ds_evaluation_type, ds_perf_evaluator, void*, unsigned int*)’ defined but not used [-Wunused-function]
opencl/opencl_device_selection.h:90:18: warning:
‘ds_status initDSProfile(ds_profile**, const char*)’ defined but not used [-Wunused-function]
opencl/opencl_device_selection.h:70:18: warning:
‘ds_status releaseDSProfile(ds_profile*, ds_score_release)’ defined but not used [-Wunused-function]
Move that functions and all related code to openclwrapper.cpp.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
2017-04-01 18:34:27 +08:00
|
|
|
DS_DEVICE_OPENCL_DEVICE
|
2014-01-27 01:38:37 +08:00
|
|
|
} ds_device_type;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
ds_device_type type;
|
|
|
|
cl_device_id oclDeviceID;
|
|
|
|
char* oclDeviceName;
|
|
|
|
char* oclDriverVersion;
|
|
|
|
// a pointer to the score data, the content/format is application defined.
|
|
|
|
void* score;
|
|
|
|
} ds_device;
|
|
|
|
|
2017-01-26 08:20:19 +08:00
|
|
|
#endif // USE_OPENCL
|
|
|
|
#endif // DEVICE_SELECTION_H
|