From 854cd2544e5e9c66c548f3be5e7cb6d4f879f91a Mon Sep 17 00:00:00 2001 From: elbandi Date: Thu, 26 May 2016 00:48:13 +0000 Subject: [PATCH] Remove duplicated function --- driver-opencl.c | 23 ++--------------------- ocl.c | 11 +++++------ ocl.h | 1 + 3 files changed, 8 insertions(+), 27 deletions(-) diff --git a/driver-opencl.c b/driver-opencl.c index 9c91eed7..b2519608 100644 --- a/driver-opencl.c +++ b/driver-opencl.c @@ -1037,28 +1037,9 @@ static void set_threads_hashes(unsigned int vectors, unsigned int compute_shader unsigned int minthreads, __maybe_unused int *intensity, __maybe_unused int *xintensity, __maybe_unused int *rawintensity, algorithm_t *algorithm) { - unsigned int threads = 0; - while (threads < minthreads) { + unsigned int threads; - if (*rawintensity > 0) { - threads = *rawintensity; - } - else if (*xintensity > 0) { - threads = compute_shaders * ((algorithm->xintensity_shift) ? (1 << (algorithm->xintensity_shift + *xintensity)) : *xintensity); - } - else { - threads = 1 << (algorithm->intensity_shift + *intensity); - } - - if (threads < minthreads) { - if (likely(*intensity < MAX_INTENSITY)) { - (*intensity)++; - } - else { - threads = minthreads; - } - } - } + threads = calc_global_threads(compute_shaders, minthreads, intensity, xintensity, rawintensity, algorithm); *globalThreads = threads; *hashes = threads * vectors; diff --git a/ocl.c b/ocl.c index 7f26842a..d7cf9914 100644 --- a/ocl.c +++ b/ocl.c @@ -180,17 +180,16 @@ static cl_int create_opencl_command_queue(cl_command_queue *command_queue, cl_co return status; } -// Copied from set_threads_hashes() in driver-opencl.c -static size_t CalcGlobalThreads(unsigned int compute_shaders, unsigned int minthreads, __maybe_unused int *intensity, __maybe_unused int *xintensity, __maybe_unused int *rawintensity, algorithm_t *algorithm) +unsigned int calc_global_threads(unsigned int compute_shaders, unsigned int minthreads, __maybe_unused int *intensity, __maybe_unused int *xintensity, __maybe_unused int *rawintensity, algorithm_t *algorithm) { - size_t threads = 0; + unsigned int threads = 0; while (threads < minthreads) { if (*rawintensity > 0) { threads = *rawintensity; } else if (*xintensity > 0) { - threads = compute_shaders * ((algorithm->xintensity_shift)?(1 << (algorithm->xintensity_shift + *xintensity)):*xintensity); + threads = compute_shaders * ((algorithm->xintensity_shift) ? (1 << (algorithm->xintensity_shift + *xintensity)) : *xintensity); } else { threads = 1 << (algorithm->intensity_shift + *intensity); @@ -206,7 +205,7 @@ static size_t CalcGlobalThreads(unsigned int compute_shaders, unsigned int minth } } - return(threads); + return threads; } _clState *initCl(unsigned int gpu, char *name, size_t nameSize, algorithm_t *algorithm) @@ -869,7 +868,7 @@ _clState *initCl(unsigned int gpu, char *name, size_t nameSize, algorithm_t *alg // By the way, if you change the intensity between now and opencl_scanhash() // calculating the global thread count, God help you. if (algorithm->type == ALGO_QUARK) { - clState->GlobalThreadCount = CalcGlobalThreads(clState->compute_shaders, clState->wsize, &cgpu->intensity, &cgpu->xintensity, &cgpu->rawintensity, &cgpu->algorithm); + clState->GlobalThreadCount = calc_global_threads(clState->compute_shaders, clState->wsize, &cgpu->intensity, &cgpu->xintensity, &cgpu->rawintensity, &cgpu->algorithm); for (int i = 0; i < 6; ++i) { clState->BranchBuffer[i] = clCreateBuffer(clState->context, CL_MEM_READ_WRITE, sizeof(cl_uint) * (clState->GlobalThreadCount + 2), NULL, &status); if (status != CL_SUCCESS && !clState->BranchBuffer[i]) { diff --git a/ocl.h b/ocl.h index e66275c8..0eeb1a09 100644 --- a/ocl.h +++ b/ocl.h @@ -29,5 +29,6 @@ typedef struct __clState { extern int clDevicesNum(void); extern _clState *initCl(unsigned int gpu, char *name, size_t nameSize, algorithm_t *algorithm); +extern unsigned int calc_global_threads(unsigned int compute_shaders, unsigned int minthreads, int *intensity, int *xintensity, int *rawintensity, algorithm_t *algorithm); #endif /* OCL_H */