mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-28 05:39:35 +08:00
c1a01d0c51
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>
47 lines
1.2 KiB
C
47 lines
1.2 KiB
C
// 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.
|
|
|
|
#ifndef DEVICE_SELECTION_H
|
|
#define DEVICE_SELECTION_H
|
|
|
|
#ifdef USE_OPENCL
|
|
|
|
#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,
|
|
DS_DEVICE_OPENCL_DEVICE
|
|
} 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;
|
|
|
|
#endif // USE_OPENCL
|
|
#endif // DEVICE_SELECTION_H
|