mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +00:00
Refactor buffer ReadWrite and Copy tests (#2259)
This change refactors the following tests to use RAII to clean-up
allocated resources on exit, and adds additional changes as mentioned
below:
- test_arrayreadwrite
- Allow different `cl_mem_flags` to be passed to the test.
- test_bufferreadwriterect:
- Allow different `cl_mem_flags` to be passed to the test.
- Customisable copy, read and write functions.
- test_buffer_copy
- Fill the destination buffer with `invalid_ptr` instead of `out_ptr` if
created with `CL_MEM_(USE/COPY)_HOST_PTR`.
- test_buffer_partial_copy
- Fill the destination buffer with `invalid_ptr` instead of `out_ptr` if
created with `CL_MEM_(USE/COPY)_HOST_PTR`.
---------
Signed-off-by: Michael Rizkalla <michael.rizkalla@arm.com>
This commit is contained in:
@@ -20,31 +20,42 @@
|
||||
#include <string.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <vector>
|
||||
|
||||
#include "testBase.h"
|
||||
|
||||
REGISTER_TEST(arrayreadwrite)
|
||||
static int test_arrayreadwrite_impl(cl_device_id device, cl_context context,
|
||||
cl_command_queue queue, int num_elements,
|
||||
cl_mem_flags flags)
|
||||
{
|
||||
cl_uint *inptr, *outptr;
|
||||
cl_mem streams[1];
|
||||
clMemWrapper buffer;
|
||||
int num_tries = 400;
|
||||
num_elements = 1024 * 1024 * 4;
|
||||
int i, j, err;
|
||||
MTdata d;
|
||||
MTdataHolder d(gRandomSeed);
|
||||
|
||||
inptr = (cl_uint*)malloc(num_elements*sizeof(cl_uint));
|
||||
outptr = (cl_uint*)malloc(num_elements*sizeof(cl_uint));
|
||||
std::vector<cl_uint> reference_vals(num_elements);
|
||||
std::vector<cl_uint> inptr(num_elements);
|
||||
std::vector<cl_uint> outptr(num_elements);
|
||||
|
||||
// randomize data
|
||||
d = init_genrand( gRandomSeed );
|
||||
for (i=0; i<num_elements; i++)
|
||||
for (int i = 0; i < num_elements; i++)
|
||||
{
|
||||
inptr[i] = (cl_uint)(genrand_int32(d) & 0x7FFFFFFF);
|
||||
reference_vals[i] = (cl_uint)(genrand_int32(d) & 0x7FFFFFFF);
|
||||
}
|
||||
|
||||
streams[0] = clCreateBuffer(context, CL_MEM_READ_WRITE,
|
||||
sizeof(cl_uint) * num_elements, NULL, &err);
|
||||
void* host_ptr = nullptr;
|
||||
if ((flags & CL_MEM_USE_HOST_PTR) || (flags & CL_MEM_COPY_HOST_PTR))
|
||||
{
|
||||
host_ptr = inptr.data();
|
||||
}
|
||||
|
||||
cl_int err = CL_SUCCESS;
|
||||
buffer = clCreateBuffer(context, flags, sizeof(cl_uint) * num_elements,
|
||||
host_ptr, &err);
|
||||
test_error(err, "clCreateBuffer failed");
|
||||
|
||||
for (i=0; i<num_tries; i++)
|
||||
for (int i = 0; i < num_tries; i++)
|
||||
{
|
||||
int offset;
|
||||
int cb;
|
||||
@@ -58,15 +69,19 @@ REGISTER_TEST(arrayreadwrite)
|
||||
if (cb > (num_elements - offset))
|
||||
cb = num_elements - offset;
|
||||
|
||||
err = clEnqueueWriteBuffer(queue, streams[0], CL_TRUE, offset*sizeof(cl_uint), sizeof(cl_uint)*cb,&inptr[offset], 0, NULL, NULL);
|
||||
err = clEnqueueWriteBuffer(
|
||||
queue, buffer, CL_TRUE, offset * sizeof(cl_uint),
|
||||
sizeof(cl_uint) * cb, &reference_vals[offset], 0, nullptr, nullptr);
|
||||
test_error(err, "clEnqueueWriteBuffer failed");
|
||||
|
||||
err = clEnqueueReadBuffer( queue, streams[0], CL_TRUE, offset*sizeof(cl_uint), cb*sizeof(cl_uint), &outptr[offset], 0, NULL, NULL );
|
||||
err = clEnqueueReadBuffer(
|
||||
queue, buffer, CL_TRUE, offset * sizeof(cl_uint),
|
||||
cb * sizeof(cl_uint), &outptr[offset], 0, nullptr, nullptr);
|
||||
test_error(err, "clEnqueueReadBuffer failed");
|
||||
|
||||
for (j=offset; j<offset+cb; j++)
|
||||
for (int j = offset; j < offset + cb; j++)
|
||||
{
|
||||
if (inptr[j] != outptr[j])
|
||||
if (reference_vals[j] != outptr[j])
|
||||
{
|
||||
log_error("ARRAY read, write test failed\n");
|
||||
err = -1;
|
||||
@@ -78,13 +93,15 @@ REGISTER_TEST(arrayreadwrite)
|
||||
break;
|
||||
}
|
||||
|
||||
free_mtdata(d);
|
||||
clReleaseMemObject(streams[0]);
|
||||
free(inptr);
|
||||
free(outptr);
|
||||
|
||||
if (!err)
|
||||
log_info("ARRAY read, write test passed\n");
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
|
||||
REGISTER_TEST(arrayreadwrite)
|
||||
{
|
||||
return test_arrayreadwrite_impl(device, context, queue, num_elements,
|
||||
CL_MEM_READ_WRITE);
|
||||
}
|
||||
|
||||
@@ -342,8 +342,21 @@ void CL_CALLBACK mem_obj_destructor_callback( cl_mem, void *data )
|
||||
free( data );
|
||||
}
|
||||
|
||||
// This is the main test function for the conformance test.
|
||||
REGISTER_TEST(bufferreadwriterect)
|
||||
using test_fn = int (*)(size_t, size_t[3], size_t[3], size_t, size_t[3],
|
||||
size_t[3]);
|
||||
struct TestFunctions
|
||||
{
|
||||
test_fn copy;
|
||||
test_fn read;
|
||||
test_fn write;
|
||||
};
|
||||
|
||||
static int test_bufferreadwriterect_impl(cl_device_id device,
|
||||
cl_context context,
|
||||
cl_command_queue queue,
|
||||
int num_elements,
|
||||
cl_map_flags buffer_flags,
|
||||
const TestFunctions& test_functions)
|
||||
{
|
||||
gQueue = queue;
|
||||
cl_int err;
|
||||
@@ -434,7 +447,8 @@ REGISTER_TEST(bufferreadwriterect)
|
||||
memcpy(backing[i], verify[i], size_bytes);
|
||||
|
||||
// Create the CL buffer.
|
||||
buffer[i] = clCreateBuffer (context, CL_MEM_USE_HOST_PTR | CL_MEM_READ_WRITE, size_bytes, backing[i], &err);
|
||||
buffer[i] =
|
||||
clCreateBuffer(context, buffer_flags, size_bytes, backing[i], &err);
|
||||
CL_EXIT_ERROR(err,"clCreateBuffer failed for buffer %u", i);
|
||||
|
||||
// Make sure buffer is cleaned up appropriately if we encounter an error in the rest of the calls.
|
||||
@@ -499,7 +513,8 @@ REGISTER_TEST(bufferreadwriterect)
|
||||
doffset[0], doffset[1], doffset[2], sregion[0],
|
||||
sregion[1], sregion[2],
|
||||
sregion[0] * sregion[1] * sregion[2]);
|
||||
if ((err = copy_region(src, soffset, sregion, dst, doffset, dregion)))
|
||||
if ((err = test_functions.copy(src, soffset, sregion, dst,
|
||||
doffset, dregion)))
|
||||
return err;
|
||||
break;
|
||||
case 1:
|
||||
@@ -509,7 +524,8 @@ REGISTER_TEST(bufferreadwriterect)
|
||||
doffset[0], doffset[1], doffset[2], sregion[0],
|
||||
sregion[1], sregion[2],
|
||||
sregion[0] * sregion[1] * sregion[2]);
|
||||
if ((err = read_verify_region(src, soffset, sregion, dst, doffset, dregion)))
|
||||
if ((err = test_functions.read(src, soffset, sregion, dst,
|
||||
doffset, dregion)))
|
||||
return err;
|
||||
break;
|
||||
case 2:
|
||||
@@ -519,7 +535,8 @@ REGISTER_TEST(bufferreadwriterect)
|
||||
doffset[0], doffset[1], doffset[2], sregion[0],
|
||||
sregion[1], sregion[2],
|
||||
sregion[0] * sregion[1] * sregion[2]);
|
||||
if ((err = write_region(src, soffset, sregion, dst, doffset, dregion)))
|
||||
if ((err = test_functions.write(src, soffset, sregion, dst,
|
||||
doffset, dregion)))
|
||||
return err;
|
||||
break;
|
||||
}
|
||||
@@ -562,3 +579,15 @@ REGISTER_TEST(bufferreadwriterect)
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
// This is the main test function for the conformance test.
|
||||
REGISTER_TEST(bufferreadwriterect)
|
||||
{
|
||||
TestFunctions test_functions;
|
||||
test_functions.copy = copy_region;
|
||||
test_functions.read = read_verify_region;
|
||||
test_functions.write = write_region;
|
||||
return test_bufferreadwriterect_impl(
|
||||
device, context, queue, num_elements,
|
||||
CL_MEM_USE_HOST_PTR | CL_MEM_READ_WRITE, test_functions);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user