mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-23 15:39:03 +00:00
Synchronise with Khronos-private Gitlab branch
The maintenance of the conformance tests is moving to Github. This commit contains all the changes that have been done in Gitlab since the first public release of the conformance tests. Signed-off-by: Kevin Petit kevin.petit@arm.com
This commit is contained in:
0
test_conformance/compatibility/test_conformance/basic/run_array
Normal file → Executable file
0
test_conformance/compatibility/test_conformance/basic/run_array
Normal file → Executable file
0
test_conformance/compatibility/test_conformance/basic/run_array_image_copy
Normal file → Executable file
0
test_conformance/compatibility/test_conformance/basic/run_array_image_copy
Normal file → Executable file
0
test_conformance/compatibility/test_conformance/basic/run_image
Normal file → Executable file
0
test_conformance/compatibility/test_conformance/basic/run_image
Normal file → Executable file
0
test_conformance/compatibility/test_conformance/basic/run_multi_read_image
Normal file → Executable file
0
test_conformance/compatibility/test_conformance/basic/run_multi_read_image
Normal file → Executable file
@@ -202,10 +202,10 @@ int test_strided_copy(cl_device_id deviceID, cl_context context, cl_command_queu
|
||||
log_error( "ERROR: Results of copy did not validate!\n" );
|
||||
sprintf(values + strlen( values), "%d -> [", i);
|
||||
for (int j=0; j<(int)elementSize; j++)
|
||||
sprintf(values + strlen( values), "%2x ", inchar[i*elementSize+j]);
|
||||
sprintf(values + strlen( values), "%2x ", inchar[j]);
|
||||
sprintf(values + strlen(values), "] != [");
|
||||
for (int j=0; j<(int)elementSize; j++)
|
||||
sprintf(values + strlen( values), "%2x ", outchar[i*elementSize+j]);
|
||||
sprintf(values + strlen( values), "%2x ", outchar[j]);
|
||||
sprintf(values + strlen(values), "]");
|
||||
log_error("%s\n", values);
|
||||
|
||||
|
||||
@@ -133,7 +133,7 @@ const size_table vector_table[] =
|
||||
|
||||
const char *ptr_table[] =
|
||||
{
|
||||
"void*",
|
||||
"global void*",
|
||||
"size_t",
|
||||
"sizeof(int)", // check return type of sizeof
|
||||
"ptrdiff_t"
|
||||
|
||||
Reference in New Issue
Block a user