SWDEV-470698 - fix formatting, add format check workflow (#657)

This commit is contained in:
Danylo Lytovchenko
2025-08-20 16:28:06 +02:00
committed by GitHub
parent 5840940caa
commit f7338717ae
1574 changed files with 162972 additions and 199346 deletions
@@ -34,18 +34,16 @@ static const unsigned int MAX_READ_MODES = 4;
static const unsigned int NumReads[NUM_READ_MODES] = {1, 4, 16, 32, 64, 128};
// 256KB, 1 MB, 4MB, 16 MB
static const unsigned int Sizes[NUM_SIZES] = {262144, 1048576, 4194304,
16777216};
static const unsigned int Sizes[NUM_SIZES] = {262144, 1048576, 4194304, 16777216};
static const unsigned int MaxTypes = 6;
static unsigned int NumTypes = MaxTypes;
static const char *types[MaxTypes] = {"char", "short", "int",
"long", "float", "double"};
static const char* types[MaxTypes] = {"char", "short", "int", "long", "float", "double"};
static unsigned int StartType = 0;
static const unsigned int NumVecWidths = 5;
static const char *vecWidths[NumVecWidths] = {"", "2", "4", "8", "16"};
static const unsigned int TypeSize[MaxTypes] = {
sizeof(cl_char), sizeof(cl_short), sizeof(cl_int),
sizeof(cl_long), sizeof(cl_float), sizeof(cl_double)};
static const char* vecWidths[NumVecWidths] = {"", "2", "4", "8", "16"};
static const unsigned int TypeSize[MaxTypes] = {sizeof(cl_char), sizeof(cl_short),
sizeof(cl_int), sizeof(cl_long),
sizeof(cl_float), sizeof(cl_double)};
#define CHAR_BUF_SIZE 512
// Quiet pesky warnings
@@ -81,8 +79,7 @@ void OCLPerfUAVReadSpeed::genShader(unsigned int type, unsigned int vecWidth,
"{\n"
" uint i = (uint) get_global_id(0);\n";
if (numReads == 1) {
SNPRINTF(buf, CHAR_BUF_SIZE, " %s%s temp = 0;\n", types[type],
vecWidths[vecWidth]);
SNPRINTF(buf, CHAR_BUF_SIZE, " %s%s temp = 0;\n", types[type], vecWidths[vecWidth]);
shader_.append(buf);
shader_ +=
" const unsigned int Max = constBuf[0];\n"
@@ -91,17 +88,13 @@ void OCLPerfUAVReadSpeed::genShader(unsigned int type, unsigned int vecWidth,
" *(outBuf + i) = temp;\n"
"}\n";
} else {
SNPRINTF(buf, CHAR_BUF_SIZE, " %s%s temp0 = 0;\n", types[type],
vecWidths[vecWidth]);
SNPRINTF(buf, CHAR_BUF_SIZE, " %s%s temp0 = 0;\n", types[type], vecWidths[vecWidth]);
shader_.append(buf);
SNPRINTF(buf, CHAR_BUF_SIZE, " %s%s temp1 = 0;\n", types[type],
vecWidths[vecWidth]);
SNPRINTF(buf, CHAR_BUF_SIZE, " %s%s temp1 = 0;\n", types[type], vecWidths[vecWidth]);
shader_.append(buf);
SNPRINTF(buf, CHAR_BUF_SIZE, " %s%s temp2 = 0;\n", types[type],
vecWidths[vecWidth]);
SNPRINTF(buf, CHAR_BUF_SIZE, " %s%s temp2 = 0;\n", types[type], vecWidths[vecWidth]);
shader_.append(buf);
SNPRINTF(buf, CHAR_BUF_SIZE, " %s%s temp3 = 0;\n", types[type],
vecWidths[vecWidth]);
SNPRINTF(buf, CHAR_BUF_SIZE, " %s%s temp3 = 0;\n", types[type], vecWidths[vecWidth]);
shader_.append(buf);
shader_ +=
" const unsigned int Max = constBuf[0];\n"
@@ -127,34 +120,32 @@ void OCLPerfUAVReadSpeed::genShader(unsigned int type, unsigned int vecWidth,
// printf("shader:\n%s\n", shader_.c_str());
}
static void CL_CALLBACK notify_callback(const char *errinfo,
const void *private_info, size_t cb,
void *user_data) {}
static void CL_CALLBACK notify_callback(const char* errinfo, const void* private_info, size_t cb,
void* user_data) {}
OCLPerfUAVReadSpeed::OCLPerfUAVReadSpeed() {
cl_uint numPlatforms;
cl_platform_id platform = NULL;
cl_uint num_devices = 0;
cl_device_id *devices = NULL;
cl_device_id* devices = NULL;
cl_device_id device = NULL;
context_ = 0;
error_ = _wrapper->clGetPlatformIDs(0, NULL, &numPlatforms);
CHECK_RESULT(error_ != CL_SUCCESS, "clGetPlatformIDs failed");
if (0 < numPlatforms) {
cl_platform_id *platforms = new cl_platform_id[numPlatforms];
cl_platform_id* platforms = new cl_platform_id[numPlatforms];
error_ = _wrapper->clGetPlatformIDs(numPlatforms, platforms, NULL);
CHECK_RESULT(error_ != CL_SUCCESS, "clGetPlatformIDs failed");
// Get last for default
platform = platforms[numPlatforms - 1];
for (unsigned i = 0; i < numPlatforms; ++i) {
char pbuf[100];
error_ = _wrapper->clGetPlatformInfo(platforms[i], CL_PLATFORM_VENDOR,
sizeof(pbuf), pbuf, NULL);
error_ =
_wrapper->clGetPlatformInfo(platforms[i], CL_PLATFORM_VENDOR, sizeof(pbuf), pbuf, NULL);
num_devices = 0;
/* Get the number of requested devices */
error_ =
_wrapper->clGetDeviceIDs(platforms[i], type_, 0, NULL, &num_devices);
error_ = _wrapper->clGetDeviceIDs(platforms[i], type_, 0, NULL, &num_devices);
// Runtime returns an error when no GPU devices are present instead of
// just returning 0 devices
// CHECK_RESULT(error_ != CL_SUCCESS, "clGetDeviceIDs failed");
@@ -173,30 +164,27 @@ OCLPerfUAVReadSpeed::OCLPerfUAVReadSpeed() {
*/
CHECK_RESULT(platform == 0, "Couldn't find AMD platform, cannot proceed");
devices = (cl_device_id *)malloc(num_devices * sizeof(cl_device_id));
devices = (cl_device_id*)malloc(num_devices * sizeof(cl_device_id));
CHECK_RESULT(devices == 0, "no devices");
/* Get the requested device */
error_ =
_wrapper->clGetDeviceIDs(platform, type_, num_devices, devices, NULL);
error_ = _wrapper->clGetDeviceIDs(platform, type_, num_devices, devices, NULL);
CHECK_RESULT(error_ != CL_SUCCESS, "clGetDeviceIDs failed");
CHECK_RESULT(_deviceId >= num_devices, "Requested deviceID not available");
device = devices[_deviceId];
context_ = _wrapper->clCreateContext(NULL, 1, &device, notify_callback, NULL,
&error_);
context_ = _wrapper->clCreateContext(NULL, 1, &device, notify_callback, NULL, &error_);
CHECK_RESULT(context_ == 0, "clCreateContext failed");
char charbuf[1024];
size_t retsize;
error_ = _wrapper->clGetDeviceInfo(device, CL_DEVICE_EXTENSIONS, 1024,
charbuf, &retsize);
error_ = _wrapper->clGetDeviceInfo(device, CL_DEVICE_EXTENSIONS, 1024, charbuf, &retsize);
CHECK_RESULT(error_ != CL_SUCCESS, "clGetDeviceInfo failed");
char *p = strstr(charbuf, "cl_khr_byte_addressable_store");
char *p2 = strstr(charbuf, "cl_khr_fp64");
char *p3 = strstr(charbuf, "cl_amd_fp64");
char* p = strstr(charbuf, "cl_khr_byte_addressable_store");
char* p2 = strstr(charbuf, "cl_khr_fp64");
char* p3 = strstr(charbuf, "cl_amd_fp64");
NumTypes = MaxTypes;
if (!p) {
@@ -219,75 +207,65 @@ OCLPerfUAVReadSpeed::~OCLPerfUAVReadSpeed() {}
// Fill with 1s of appropriate type
void OCLPerfUAVReadSpeed::setData(cl_mem buffer, float val) {
void *ptr =
_wrapper->clEnqueueMapBuffer(cmd_queue_, buffer, true, CL_MAP_WRITE, 0,
bufSize_, 0, NULL, NULL, &error_);
void* ptr = _wrapper->clEnqueueMapBuffer(cmd_queue_, buffer, true, CL_MAP_WRITE, 0, bufSize_, 0,
NULL, NULL, &error_);
switch (typeIdx_) {
case 0: // char
{
char *data = (char *)ptr;
for (unsigned int i = 0; i < (bufSize_ / sizeof(char)); i++)
data[i] = (char)val;
char* data = (char*)ptr;
for (unsigned int i = 0; i < (bufSize_ / sizeof(char)); i++) data[i] = (char)val;
break;
}
case 1: // short
{
short *data = (short *)ptr;
for (unsigned int i = 0; i < (bufSize_ / sizeof(short)); i++)
data[i] = (short)val;
short* data = (short*)ptr;
for (unsigned int i = 0; i < (bufSize_ / sizeof(short)); i++) data[i] = (short)val;
break;
}
case 2: // int
{
int *data = (int *)ptr;
for (unsigned int i = 0; i < (bufSize_ / sizeof(int)); i++)
data[i] = (int)val;
int* data = (int*)ptr;
for (unsigned int i = 0; i < (bufSize_ / sizeof(int)); i++) data[i] = (int)val;
break;
}
case 3: // long
{
cl_long *data = (cl_long *)ptr;
for (unsigned int i = 0; i < (bufSize_ / sizeof(cl_long)); i++)
data[i] = (cl_long)val;
cl_long* data = (cl_long*)ptr;
for (unsigned int i = 0; i < (bufSize_ / sizeof(cl_long)); i++) data[i] = (cl_long)val;
break;
}
case 4: // float
{
float *data = (float *)ptr;
for (unsigned int i = 0; i < (bufSize_ / sizeof(float)); i++)
data[i] = val;
float* data = (float*)ptr;
for (unsigned int i = 0; i < (bufSize_ / sizeof(float)); i++) data[i] = val;
break;
}
case 5: // double
{
double *data = (double *)ptr;
for (unsigned int i = 0; i < (bufSize_ / sizeof(double)); i++)
data[i] = (double)val;
double* data = (double*)ptr;
for (unsigned int i = 0; i < (bufSize_ / sizeof(double)); i++) data[i] = (double)val;
break;
}
default:
// oops
break;
}
error_ =
_wrapper->clEnqueueUnmapMemObject(cmd_queue_, buffer, ptr, 0, NULL, NULL);
error_ = _wrapper->clEnqueueUnmapMemObject(cmd_queue_, buffer, ptr, 0, NULL, NULL);
}
void OCLPerfUAVReadSpeed::checkData(cl_mem buffer) {
void *ptr =
_wrapper->clEnqueueMapBuffer(cmd_queue_, buffer, true, CL_MAP_READ, 0,
bufSize_, 0, NULL, NULL, &error_);
void* ptr = _wrapper->clEnqueueMapBuffer(cmd_queue_, buffer, true, CL_MAP_READ, 0, bufSize_, 0,
NULL, NULL, &error_);
switch (typeIdx_) {
case 0: // char
{
char *data = (char *)ptr;
char* data = (char*)ptr;
for (unsigned int i = 0; i < (bufSize_ / sizeof(char)); i++) {
if (data[i] != (char)numReads_) {
printf("Data validation failed at index %d!\n", i);
printf("Expected %d %d %d %d\nGot %d %d %d %d\n", numReads_,
numReads_, numReads_, numReads_, (unsigned int)data[i],
(unsigned int)data[i + 1], (unsigned int)data[i + 2],
(unsigned int)data[i + 3]);
printf("Expected %d %d %d %d\nGot %d %d %d %d\n", numReads_, numReads_, numReads_,
numReads_, (unsigned int)data[i], (unsigned int)data[i + 1],
(unsigned int)data[i + 2], (unsigned int)data[i + 3]);
CHECK_RESULT_NO_RETURN(0, "Data validation failed!\n");
break;
}
@@ -296,14 +274,13 @@ void OCLPerfUAVReadSpeed::checkData(cl_mem buffer) {
}
case 1: // short
{
short *data = (short *)ptr;
short* data = (short*)ptr;
for (unsigned int i = 0; i < (bufSize_ / sizeof(short)); i++) {
if (data[i] != (short)numReads_) {
printf("Data validation failed at index %d!\n", i);
printf("Expected %d %d %d %d\nGot %d %d %d %d\n", numReads_,
numReads_, numReads_, numReads_, (unsigned int)data[i],
(unsigned int)data[i + 1], (unsigned int)data[i + 2],
(unsigned int)data[i + 3]);
printf("Expected %d %d %d %d\nGot %d %d %d %d\n", numReads_, numReads_, numReads_,
numReads_, (unsigned int)data[i], (unsigned int)data[i + 1],
(unsigned int)data[i + 2], (unsigned int)data[i + 3]);
CHECK_RESULT_NO_RETURN(0, "Data validation failed!\n");
break;
}
@@ -312,14 +289,13 @@ void OCLPerfUAVReadSpeed::checkData(cl_mem buffer) {
}
case 2: // int
{
int *data = (int *)ptr;
int* data = (int*)ptr;
for (unsigned int i = 0; i < (bufSize_ / sizeof(int)); i++) {
if (data[i] != (int)numReads_) {
printf("Data validation failed at index %d!\n", i);
printf("Expected %d %d %d %d\nGot %d %d %d %d\n", numReads_,
numReads_, numReads_, numReads_, (unsigned int)data[i],
(unsigned int)data[i + 1], (unsigned int)data[i + 2],
(unsigned int)data[i + 3]);
printf("Expected %d %d %d %d\nGot %d %d %d %d\n", numReads_, numReads_, numReads_,
numReads_, (unsigned int)data[i], (unsigned int)data[i + 1],
(unsigned int)data[i + 2], (unsigned int)data[i + 3]);
CHECK_RESULT_NO_RETURN(0, "Data validation failed!\n");
break;
}
@@ -328,14 +304,13 @@ void OCLPerfUAVReadSpeed::checkData(cl_mem buffer) {
}
case 3: // long
{
cl_long *data = (cl_long *)ptr;
cl_long* data = (cl_long*)ptr;
for (unsigned int i = 0; i < (bufSize_ / sizeof(cl_long)); i++) {
if (data[i] != (cl_long)numReads_) {
printf("Data validation failed at index %d!\n", i);
printf("Expected %d %d %d %d\nGot %d %d %d %d\n", numReads_,
numReads_, numReads_, numReads_, (unsigned int)data[i],
(unsigned int)data[i + 1], (unsigned int)data[i + 2],
(unsigned int)data[i + 3]);
printf("Expected %d %d %d %d\nGot %d %d %d %d\n", numReads_, numReads_, numReads_,
numReads_, (unsigned int)data[i], (unsigned int)data[i + 1],
(unsigned int)data[i + 2], (unsigned int)data[i + 3]);
CHECK_RESULT_NO_RETURN(0, "Data validation failed!\n");
break;
}
@@ -344,14 +319,13 @@ void OCLPerfUAVReadSpeed::checkData(cl_mem buffer) {
}
case 4: // float
{
float *data = (float *)ptr;
float* data = (float*)ptr;
for (unsigned int i = 0; i < (bufSize_ / sizeof(float)); i++) {
if (data[i] != (float)numReads_) {
printf("Data validation failed at index %d!\n", i);
printf("Expected %d %d %d %d\nGot %d %d %d %d\n", numReads_,
numReads_, numReads_, numReads_, (unsigned int)data[i],
(unsigned int)data[i + 1], (unsigned int)data[i + 2],
(unsigned int)data[i + 3]);
printf("Expected %d %d %d %d\nGot %d %d %d %d\n", numReads_, numReads_, numReads_,
numReads_, (unsigned int)data[i], (unsigned int)data[i + 1],
(unsigned int)data[i + 2], (unsigned int)data[i + 3]);
CHECK_RESULT_NO_RETURN(0, "Data validation failed!\n");
break;
}
@@ -360,14 +334,13 @@ void OCLPerfUAVReadSpeed::checkData(cl_mem buffer) {
}
case 5: // double
{
double *data = (double *)ptr;
double* data = (double*)ptr;
for (unsigned int i = 0; i < (bufSize_ / sizeof(double)); i++) {
if (data[i] != (double)numReads_) {
printf("Data validation failed at index %d!\n", i);
printf("Expected %d %d %d %d\nGot %d %d %d %d\n", numReads_,
numReads_, numReads_, numReads_, (unsigned int)data[i],
(unsigned int)data[i + 1], (unsigned int)data[i + 2],
(unsigned int)data[i + 3]);
printf("Expected %d %d %d %d\nGot %d %d %d %d\n", numReads_, numReads_, numReads_,
numReads_, (unsigned int)data[i], (unsigned int)data[i + 1],
(unsigned int)data[i + 2], (unsigned int)data[i + 3]);
CHECK_RESULT_NO_RETURN(0, "Data validation failed!\n");
break;
}
@@ -378,16 +351,15 @@ void OCLPerfUAVReadSpeed::checkData(cl_mem buffer) {
// oops
break;
}
error_ =
_wrapper->clEnqueueUnmapMemObject(cmd_queue_, buffer, ptr, 0, NULL, NULL);
error_ = _wrapper->clEnqueueUnmapMemObject(cmd_queue_, buffer, ptr, 0, NULL, NULL);
}
void OCLPerfUAVReadSpeed::open(unsigned int test, char *units,
double &conversion, unsigned int deviceId) {
void OCLPerfUAVReadSpeed::open(unsigned int test, char* units, double& conversion,
unsigned int deviceId) {
cl_uint numPlatforms;
cl_platform_id platform = NULL;
cl_uint num_devices = 0;
cl_device_id *devices = NULL;
cl_device_id* devices = NULL;
cl_device_id device = NULL;
_crcword = 0;
conversion = 1.0f;
@@ -408,7 +380,7 @@ void OCLPerfUAVReadSpeed::open(unsigned int test, char *units,
error_ = _wrapper->clGetPlatformIDs(0, NULL, &numPlatforms);
CHECK_RESULT(error_ != CL_SUCCESS, "clGetPlatformIDs failed");
if (0 < numPlatforms) {
cl_platform_id *platforms = new cl_platform_id[numPlatforms];
cl_platform_id* platforms = new cl_platform_id[numPlatforms];
error_ = _wrapper->clGetPlatformIDs(numPlatforms, platforms, NULL);
CHECK_RESULT(error_ != CL_SUCCESS, "clGetPlatformIDs failed");
#if 0
@@ -418,13 +390,11 @@ void OCLPerfUAVReadSpeed::open(unsigned int test, char *units,
#endif
platform = platforms[_platformIndex];
char pbuf[100];
error_ = _wrapper->clGetPlatformInfo(platforms[_platformIndex],
CL_PLATFORM_VENDOR, sizeof(pbuf), pbuf,
NULL);
error_ = _wrapper->clGetPlatformInfo(platforms[_platformIndex], CL_PLATFORM_VENDOR,
sizeof(pbuf), pbuf, NULL);
num_devices = 0;
/* Get the number of requested devices */
error_ = _wrapper->clGetDeviceIDs(platforms[_platformIndex], type_, 0, NULL,
&num_devices);
error_ = _wrapper->clGetDeviceIDs(platforms[_platformIndex], type_, 0, NULL, &num_devices);
// Runtime returns an error when no GPU devices are present instead of just
// returning 0 devices
// CHECK_RESULT(error_ != CL_SUCCESS, "clGetDeviceIDs failed");
@@ -445,8 +415,7 @@ void OCLPerfUAVReadSpeed::open(unsigned int test, char *units,
numReads_ = NumReads[test % MAX_READ_MODES];
width_ = Sizes[(test / MAX_READ_MODES) % NUM_SIZES];
vecSizeIdx_ = (test / (MAX_READ_MODES * NUM_SIZES)) % NumVecWidths;
typeIdx_ = (test / (MAX_READ_MODES * NUM_SIZES * NumVecWidths)) % NumTypes +
StartType;
typeIdx_ = (test / (MAX_READ_MODES * NUM_SIZES * NumVecWidths)) % NumTypes + StartType;
cached_ = (test >= (MAX_READ_MODES * NUM_SIZES * NumTypes * NumVecWidths));
bufSize_ = width_;
@@ -457,18 +426,16 @@ void OCLPerfUAVReadSpeed::open(unsigned int test, char *units,
*/
CHECK_RESULT(platform == 0, "Couldn't find AMD platform, cannot proceed");
devices = (cl_device_id *)malloc(num_devices * sizeof(cl_device_id));
devices = (cl_device_id*)malloc(num_devices * sizeof(cl_device_id));
CHECK_RESULT(devices == 0, "no devices");
/* Get the requested device */
error_ =
_wrapper->clGetDeviceIDs(platform, type_, num_devices, devices, NULL);
error_ = _wrapper->clGetDeviceIDs(platform, type_, num_devices, devices, NULL);
CHECK_RESULT(error_ != CL_SUCCESS, "clGetDeviceIDs failed");
device = devices[0];
context_ = _wrapper->clCreateContext(NULL, 1, &device, notify_callback, NULL,
&error_);
context_ = _wrapper->clCreateContext(NULL, 1, &device, notify_callback, NULL, &error_);
CHECK_RESULT(context_ == 0, "clCreateContext failed");
cmd_queue_ = _wrapper->clCreateCommandQueue(context_, device, 0, NULL);
@@ -484,9 +451,8 @@ void OCLPerfUAVReadSpeed::open(unsigned int test, char *units,
CHECK_RESULT(constBuffer_ == 0, "clCreateBuffer(constBuffer) failed");
genShader(typeIdx_, vecSizeIdx_, numReads_);
char *tmp = (char *)shader_.c_str();
program_ = _wrapper->clCreateProgramWithSource(
context_, 1, (const char **)&tmp, NULL, &error_);
char* tmp = (char*)shader_.c_str();
program_ = _wrapper->clCreateProgramWithSource(context_, 1, (const char**)&tmp, NULL, &error_);
CHECK_RESULT(program_ == 0, "clCreateProgramWithSource failed");
std::string args;
@@ -511,14 +477,12 @@ void OCLPerfUAVReadSpeed::open(unsigned int test, char *units,
args += "-Wb,-pre-RA-sched=list-tdrr";
#endif
error_ =
_wrapper->clBuildProgram(program_, 1, &device, args.c_str(), NULL, NULL);
error_ = _wrapper->clBuildProgram(program_, 1, &device, args.c_str(), NULL, NULL);
if (error_ != CL_SUCCESS) {
cl_int intError;
char log[16384];
intError =
_wrapper->clGetProgramBuildInfo(program_, device, CL_PROGRAM_BUILD_LOG,
16384 * sizeof(char), log, NULL);
intError = _wrapper->clGetProgramBuildInfo(program_, device, CL_PROGRAM_BUILD_LOG,
16384 * sizeof(char), log, NULL);
printf("Build error -> %s\n", log);
CHECK_RESULT(0, "clBuildProgram failed");
@@ -526,18 +490,14 @@ void OCLPerfUAVReadSpeed::open(unsigned int test, char *units,
kernel_ = _wrapper->clCreateKernel(program_, "_uavReadSpeed", &error_);
CHECK_RESULT(kernel_ == 0, "clCreateKernel failed");
error_ =
_wrapper->clSetKernelArg(kernel_, 0, sizeof(cl_mem), (void *)&inBuffer_);
error_ =
_wrapper->clSetKernelArg(kernel_, 1, sizeof(cl_mem), (void *)&outBuffer_);
error_ = _wrapper->clSetKernelArg(kernel_, 2, sizeof(cl_mem),
(void *)&constBuffer_);
error_ = _wrapper->clSetKernelArg(kernel_, 0, sizeof(cl_mem), (void*)&inBuffer_);
error_ = _wrapper->clSetKernelArg(kernel_, 1, sizeof(cl_mem), (void*)&outBuffer_);
error_ = _wrapper->clSetKernelArg(kernel_, 2, sizeof(cl_mem), (void*)&constBuffer_);
setData(inBuffer_, 1.0f);
setData(outBuffer_, 1.2345678f);
unsigned int *cBuf = (unsigned int *)_wrapper->clEnqueueMapBuffer(
cmd_queue_, constBuffer_, true, CL_MAP_WRITE, 0, 16 * 2, 0, NULL, NULL,
&error_);
unsigned int* cBuf = (unsigned int*)_wrapper->clEnqueueMapBuffer(
cmd_queue_, constBuffer_, true, CL_MAP_WRITE, 0, 16 * 2, 0, NULL, NULL, &error_);
// Force all wavefronts to fetch the same data. We are looking for peak speed
// here.
cBuf[0] = 64;
@@ -548,8 +508,7 @@ void OCLPerfUAVReadSpeed::open(unsigned int test, char *units,
cBuf[3] = 128;
cBuf[4] = 192;
cBuf[5] = 0;
error_ = _wrapper->clEnqueueUnmapMemObject(cmd_queue_, constBuffer_, cBuf, 0,
NULL, NULL);
error_ = _wrapper->clEnqueueUnmapMemObject(cmd_queue_, constBuffer_, cBuf, 0, NULL, NULL);
_wrapper->clFinish(cmd_queue_);
}
@@ -565,9 +524,9 @@ void OCLPerfUAVReadSpeed::run(void) {
timer.Reset();
timer.Start();
for (unsigned int i = 0; i < NUM_ITER; i++) {
error_ = _wrapper->clEnqueueNDRangeKernel(
cmd_queue_, kernel_, 1, NULL, (const size_t *)global_work_size,
(const size_t *)local_work_size, 0, NULL, NULL);
error_ = _wrapper->clEnqueueNDRangeKernel(cmd_queue_, kernel_, 1, NULL,
(const size_t*)global_work_size,
(const size_t*)local_work_size, 0, NULL, NULL);
CHECK_RESULT(error_, "clEnqueueNDRangeKernel failed");
}
@@ -577,15 +536,14 @@ void OCLPerfUAVReadSpeed::run(void) {
double sec = timer.GetElapsedTime();
// Constant bandwidth in GB/s
double perf =
((double)bufSize_ * numReads_ * NUM_ITER * (double)(1e-09)) / sec;
double perf = ((double)bufSize_ * numReads_ * NUM_ITER * (double)(1e-09)) / sec;
_perfInfo = (float)perf;
char buf[256];
char buf2[256];
SNPRINTF(buf, sizeof(buf), "%s%s", types[typeIdx_], vecWidths[vecSizeIdx_]);
SNPRINTF(buf2, sizeof(buf2), " %-8s (%8d) %2d reads: %-8s (GB/s) ", buf,
width_, numReads_, (cached_ ? "cached" : "uncached"));
SNPRINTF(buf2, sizeof(buf2), " %-8s (%8d) %2d reads: %-8s (GB/s) ", buf, width_, numReads_,
(cached_ ? "cached" : "uncached"));
testDescString = buf2;
checkData(outBuffer_);
}
@@ -595,18 +553,15 @@ unsigned int OCLPerfUAVReadSpeed::close(void) {
if (inBuffer_) {
error_ = _wrapper->clReleaseMemObject(inBuffer_);
CHECK_RESULT_NO_RETURN(error_ != CL_SUCCESS,
"clReleaseMemObject(inBuffer_) failed");
CHECK_RESULT_NO_RETURN(error_ != CL_SUCCESS, "clReleaseMemObject(inBuffer_) failed");
}
if (outBuffer_) {
error_ = _wrapper->clReleaseMemObject(outBuffer_);
CHECK_RESULT_NO_RETURN(error_ != CL_SUCCESS,
"clReleaseMemObject(outBuffer_) failed");
CHECK_RESULT_NO_RETURN(error_ != CL_SUCCESS, "clReleaseMemObject(outBuffer_) failed");
}
if (constBuffer_) {
error_ = _wrapper->clReleaseMemObject(constBuffer_);
CHECK_RESULT_NO_RETURN(error_ != CL_SUCCESS,
"clReleaseMemObject(constBuffer_) failed");
CHECK_RESULT_NO_RETURN(error_ != CL_SUCCESS, "clReleaseMemObject(constBuffer_) failed");
}
if (kernel_) {
error_ = _wrapper->clReleaseKernel(kernel_);
@@ -618,8 +573,7 @@ unsigned int OCLPerfUAVReadSpeed::close(void) {
}
if (cmd_queue_) {
error_ = _wrapper->clReleaseCommandQueue(cmd_queue_);
CHECK_RESULT_NO_RETURN(error_ != CL_SUCCESS,
"clReleaseCommandQueue failed");
CHECK_RESULT_NO_RETURN(error_ != CL_SUCCESS, "clReleaseCommandQueue failed");
}
if (context_) {
error_ = _wrapper->clReleaseContext(context_);