mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-09 06:18:06 +00:00
Reverted create_opencl_command_queue
This commit is contained in:
parent
f157dd9710
commit
1854e96a0e
30
ocl.c
30
ocl.c
@ -183,28 +183,14 @@ static bool get_opencl_bit_align_support(cl_device_id *device)
|
|||||||
return !!find;
|
return !!find;
|
||||||
}
|
}
|
||||||
|
|
||||||
static cl_int create_opencl_command_queue(cl_command_queue *command_queue, cl_context *context, cl_device_id *device, const void *cq_properties)
|
static cl_int create_opencl_command_queue(cl_command_queue *command_queue, cl_context *context, cl_device_id *device, cl_command_queue_properties cq_properties)
|
||||||
{
|
{
|
||||||
cl_int status;
|
cl_int status;
|
||||||
|
*command_queue = clCreateCommandQueue(*context, *device,
|
||||||
if(get_opencl_version(*device) < 2.0) {
|
cq_properties, &status);
|
||||||
*command_queue = clCreateCommandQueue(*context, *device, *((const cl_command_queue_properties *)cq_properties), &status);
|
if (status != CL_SUCCESS) /* Try again without OOE enable */
|
||||||
|
*command_queue = clCreateCommandQueue(*context, *device, 0, &status);
|
||||||
// Didn't work, try again with no properties.
|
return status;
|
||||||
if (status != CL_SUCCESS) {
|
|
||||||
*command_queue = clCreateCommandQueue(*context, *device, 0, &status);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
*command_queue = clCreateCommandQueueWithProperties(*context, *device, (const cl_queue_properties *)cq_properties, &status);
|
|
||||||
|
|
||||||
// Didn't work, same deal.
|
|
||||||
if (status != CL_SUCCESS) {
|
|
||||||
*command_queue = clCreateCommandQueueWithProperties(*context, *device, 0, &status);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return status;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_clState *initCl(unsigned int gpu, char *name, size_t nameSize, algorithm_t *algorithm)
|
_clState *initCl(unsigned int gpu, char *name, size_t nameSize, algorithm_t *algorithm)
|
||||||
@ -270,7 +256,7 @@ _clState *initCl(unsigned int gpu, char *name, size_t nameSize, algorithm_t *alg
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
status = create_opencl_command_queue(&clState->commandQueue, &clState->context, &devices[gpu], (const void *)&(cgpu->algorithm.cq_properties));
|
status = create_opencl_command_queue(&clState->commandQueue, &clState->context, &devices[gpu], cgpu->algorithm.cq_properties);
|
||||||
if (status != CL_SUCCESS) {
|
if (status != CL_SUCCESS) {
|
||||||
applog(LOG_ERR, "Error %d: Creating Command Queue. (clCreateCommandQueue)", status);
|
applog(LOG_ERR, "Error %d: Creating Command Queue. (clCreateCommandQueue)", status);
|
||||||
return NULL;
|
return NULL;
|
||||||
|
Loading…
Reference in New Issue
Block a user