#include <sys/types.h>
#include <stdio.h>
#include <string.h>
#include <clBLAS.h>
static const size_t N = 5;
static const cl_float alpha = 10;
static const cl_float A[] = {
11, 12, 13, 14, 15,
0, 22, 23, 24, 25,
0, 0, 33, 34, 35,
0, 0, 0, 44, 45,
0, 0, 0, 0, 55
};
static const size_t lda = 5;
static const cl_float X[] = {
11,
21,
31,
41,
51
};
static const int incx = 1;
static const cl_float beta = 20;
static cl_float Y[] = {
11,
21,
31,
41,
51
};
static const int incy = 1;
static cl_float result[5];
static const size_t off = 1;
static const size_t offa = 5 + 1;
static const size_t offx = 1;
static const size_t offy = 1;
static void
printResult(const char* str)
{
size_t i, nElements;
printf("%s:\n", str);
nElements = (sizeof(result) / sizeof(cl_float)) / incy;
for (i = 0; i < nElements; i++) {
printf("%d\n", (int)result[i * incy]);
}
}
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, bufX, bufY;
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 * N * sizeof(*A),
NULL, &err);
bufX = clCreateBuffer(ctx, CL_MEM_READ_ONLY, N * sizeof(*X),
NULL, &err);
bufY = clCreateBuffer(ctx, CL_MEM_READ_WRITE, N * sizeof(*Y),
NULL, &err);
err = clEnqueueWriteBuffer(queue, bufA, CL_TRUE, 0,
N * N * sizeof(*A), A, 0, NULL, NULL);
err = clEnqueueWriteBuffer(queue, bufX, CL_TRUE, 0,
N * sizeof(*X), X, 0, NULL, NULL);
err = clEnqueueWriteBuffer(queue, bufY, CL_TRUE, 0,
N * sizeof(*Y), Y, 0, NULL, NULL);
err =
clblasSsymv(order, uplo, N - off, alpha, bufA, offa, lda,
bufX, offx, incx, beta, bufY, offy, incy, 1, &queue, 0, NULL, &event);
if (err != CL_SUCCESS) {
printf("clblasSsymvEx() failed with %d\n", err);
ret = 1;
}
else {
err = clWaitForEvents(1, &event);
err = clEnqueueReadBuffer(queue, bufY, CL_TRUE, 0,
N * sizeof(*result),
result, 0, NULL, NULL);
puts("");
printResult("clblasSsymvEx result");
}
clReleaseEvent(event);
clReleaseMemObject(bufY);
clReleaseMemObject(bufX);
clReleaseMemObject(bufA);
clReleaseCommandQueue(queue);
clReleaseContext(ctx);
return ret;
}