SWDEV-383839 - fix oclperf test failures on MI300
Change-Id: I789dad08f875d16eeb4d60dc60379d4ee4158904
This commit is contained in:
@@ -73,6 +73,7 @@ void OCLPerfMapImageWriteSpeed::open(unsigned int test, char *units,
|
||||
context_ = 0;
|
||||
cmd_queue_ = 0;
|
||||
outBuffer_ = 0;
|
||||
skip_ = false;
|
||||
|
||||
error_ = _wrapper->clGetPlatformIDs(0, NULL, &numPlatforms);
|
||||
CHECK_RESULT(error_ != CL_SUCCESS, "clGetPlatformIDs failed");
|
||||
@@ -129,7 +130,15 @@ void OCLPerfMapImageWriteSpeed::open(unsigned int test, char *units,
|
||||
|
||||
CHECK_RESULT(_deviceId >= num_devices, "Requested deviceID not available");
|
||||
device = devices[_deviceId];
|
||||
|
||||
size_t size;
|
||||
bool imageSupport_ = false;
|
||||
error_ = _wrapper->clGetDeviceInfo(device, CL_DEVICE_IMAGE_SUPPORT,
|
||||
sizeof(imageSupport_), &imageSupport_, &size);
|
||||
if (!imageSupport_) {
|
||||
printf("\n%s\n", "Image not supported, skipping this test!");
|
||||
skip_ = true;
|
||||
return;
|
||||
}
|
||||
context_ = _wrapper->clCreateContext(NULL, 1, &device, notify_callback, NULL,
|
||||
&error_);
|
||||
CHECK_RESULT(context_ == 0, "clCreateContext failed");
|
||||
@@ -144,6 +153,9 @@ void OCLPerfMapImageWriteSpeed::open(unsigned int test, char *units,
|
||||
}
|
||||
|
||||
void OCLPerfMapImageWriteSpeed::run(void) {
|
||||
if (skip_) {
|
||||
return;
|
||||
}
|
||||
CPerfCounter timer;
|
||||
|
||||
void *mem;
|
||||
|
||||
Reference in New Issue
Block a user