This is an example of how to use the clblasSsyr2kEx function.
#include <sys/types.h>
#include <stdio.h>
#include <string.h>
#include <clBLAS.h>
static const size_t N = 5;
static const size_t K = 4;
static const cl_float alpha = 10;
static const cl_float A[] = {
11, 12, 13, 14,
21, 22, 23, 24,
31, 32, 33, 34,
41, 42, 43, 44,
51, 52, 53, 54
};
static const size_t lda = 4;
static cl_float B[] = {
11, 12, 13, 14,
21, 22, 23, 24,
31, 32, 33, 34,
41, 42, 43, 44,
51, 52, 53, 54
};
static const size_t ldb = 4;
static const cl_float beta = 20;
static cl_float C[] = {
11, 12, 13, 14, 15,
12, 22, 23, 24, 25,
13, 23, 33, 34, 35,
14, 24, 34, 44, 45,
15, 25, 35, 45, 55
};
static const size_t ldc = 5;
static cl_float result[5*5];
const size_t off = 1;
static const size_t offA = 4 + 1;
static const size_t offB = 4 + 1;
static const size_t offC = 5 + 1;
static void
printResult(const char* str)
{
size_t i, j, nrows;
printf("%s:\n", str);
nrows = (sizeof(result) / sizeof(cl_float)) / ldc;
for (i = 0; i < nrows; i++) {
for (j = 0; j < ldc; j++) {
printf("%d ", (int)result[i * ldc + j]);
}
printf("\n");
}
}
int
main(void)
{
cl_int err;
cl_platform_id platform = 0;
cl_device_id device = 0;
cl_context_properties props[3] = { CL_CONTEXT_PLATFORM, 0, 0 };
cl_context ctx = 0;
cl_command_queue queue = 0;
cl_mem bufA, bufB, bufC;
cl_event event = NULL;
int ret = 0;
err = clGetPlatformIDs(1, &platform, NULL);
if (err != CL_SUCCESS) {
printf( "clGetPlatformIDs() failed with %d\n", err );
return 1;
}
err = clGetDeviceIDs(platform, CL_DEVICE_TYPE_GPU, 1, &device, NULL);
if (err != CL_SUCCESS) {
printf( "clGetDeviceIDs() failed with %d\n", err );
return 1;
}
props[1] = (cl_context_properties)platform;
ctx = clCreateContext(props, 1, &device, NULL, NULL, &err);
if (err != CL_SUCCESS) {
printf( "clCreateContext() failed with %d\n", err );
return 1;
}
queue = clCreateCommandQueue(ctx, device, 0, &err);
if (err != CL_SUCCESS) {
printf( "clCreateCommandQueue() failed with %d\n", err );
clReleaseContext(ctx);
return 1;
}
if (err != CL_SUCCESS) {
printf("clblasSetup() failed with %d\n", err);
clReleaseCommandQueue(queue);
clReleaseContext(ctx);
return 1;
}
bufA = clCreateBuffer(ctx, CL_MEM_READ_ONLY, N * K * sizeof(*A),
NULL, &err);
bufB = clCreateBuffer(ctx, CL_MEM_READ_ONLY, N * K * sizeof(*B),
NULL, &err);
bufC = clCreateBuffer(ctx, CL_MEM_READ_WRITE, N * N * sizeof(*C),
NULL, &err);
err = clEnqueueWriteBuffer(queue, bufA, CL_TRUE, 0,
N * K * sizeof(*A), A, 0, NULL, NULL);
err = clEnqueueWriteBuffer(queue, bufB, CL_TRUE, 0,
N * K * sizeof(*B), B, 0, NULL, NULL);
err = clEnqueueWriteBuffer(queue, bufC, CL_TRUE, 0,
N * N * sizeof(*C), C, 0, NULL, NULL);
alpha, bufA, offA, lda, bufB, offB, ldb,
beta, bufC, offC, ldc, 1, &queue,
0, NULL, &event);
if (err != CL_SUCCESS) {
printf("clblasSsyr2kEx() failed with %d\n", err);
ret = 1;
}
else {
err = clWaitForEvents(1, &event);
err = clEnqueueReadBuffer(queue, bufC, CL_TRUE, 0,
N * N * sizeof(*result),
result, 0, NULL, NULL);
puts("");
printResult("clblasSsyr2kEx result");
}
clReleaseEvent(event);
clReleaseMemObject(bufC);
clReleaseMemObject(bufB);
clReleaseMemObject(bufA);
clReleaseCommandQueue(queue);
clReleaseContext(ctx);
return ret;
}