MCPcopy Create free account
hub / github.com/clMathLibraries/clBLAS / getQueueProperties

Function getQueueProperties

src/library/blas/generic/common.c:325–340  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

323}
324
325cl_int VISIBILITY_HIDDEN
326getQueueProperties(
327 cl_command_queue queue,
328 cl_command_queue_properties *props)
329{
330 cl_int err;
331 cl_command_queue_properties p;
332
333 err = clGetCommandQueueInfo(queue, CL_QUEUE_PROPERTIES,
334 sizeof(cl_command_queue_properties), &p, NULL);
335 if (err != CL_SUCCESS)
336 return err;
337 if (props != NULL)
338 *props = p;
339 return err;
340}
341
342Kernel VISIBILITY_HIDDEN
343*loadKernel( const unsigned char** buffer,

Callers 1

getQueueMaxImagesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected