mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +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:
132
test_conformance/spirv_new/test_op_selection_merge.cpp
Normal file
132
test_conformance/spirv_new/test_op_selection_merge.cpp
Normal file
@@ -0,0 +1,132 @@
|
||||
/******************************************************************
|
||||
Copyright (c) 2016 The Khronos Group Inc. All Rights Reserved.
|
||||
|
||||
This code is protected by copyright laws and contains material proprietary to the Khronos Group, Inc.
|
||||
This is UNPUBLISHED PROPRIETARY SOURCE CODE that may not be disclosed in whole or in part to
|
||||
third parties, and may not be reproduced, republished, distributed, transmitted, displayed,
|
||||
broadcast or otherwise exploited in any manner without the express prior written permission
|
||||
of Khronos Group. The receipt or possession of this code does not convey any rights to reproduce,
|
||||
disclose, or distribute its contents, or to manufacture, use, or sell anything that it may describe,
|
||||
in whole or in part other than under the terms of the Khronos Adopters Agreement
|
||||
or Khronos Conformance Test Source License Agreement as executed between Khronos and the recipient.
|
||||
******************************************************************/
|
||||
|
||||
#include "testBase.h"
|
||||
#include "types.hpp"
|
||||
|
||||
#include <sstream>
|
||||
#include <string>
|
||||
|
||||
|
||||
template<typename T>
|
||||
int test_selection_merge(cl_device_id deviceID,
|
||||
cl_context context,
|
||||
cl_command_queue queue,
|
||||
const char *name,
|
||||
const std::vector<T> &h_lhs,
|
||||
const std::vector<T> &h_rhs,
|
||||
const std::vector<T> &h_ref)
|
||||
{
|
||||
|
||||
cl_int err = CL_SUCCESS;
|
||||
int num = (int)h_lhs.size();
|
||||
size_t bytes = num * sizeof(T);
|
||||
|
||||
clMemWrapper lhs = clCreateBuffer(context, CL_MEM_READ_ONLY, bytes, NULL, &err);
|
||||
SPIRV_CHECK_ERROR(err, "Failed to create lhs buffer");
|
||||
|
||||
err = clEnqueueWriteBuffer(queue, lhs, CL_TRUE, 0, bytes, &h_lhs[0], 0, NULL, NULL);
|
||||
SPIRV_CHECK_ERROR(err, "Failed to copy to lhs buffer");
|
||||
|
||||
clMemWrapper rhs = clCreateBuffer(context, CL_MEM_READ_ONLY, bytes, NULL, &err);
|
||||
SPIRV_CHECK_ERROR(err, "Failed to create rhs buffer");
|
||||
|
||||
err = clEnqueueWriteBuffer(queue, rhs, CL_TRUE, 0, bytes, &h_rhs[0], 0, NULL, NULL);
|
||||
SPIRV_CHECK_ERROR(err, "Failed to copy to rhs buffer");
|
||||
|
||||
clProgramWrapper prog;
|
||||
err = get_program_with_il(prog, deviceID, context, name);
|
||||
SPIRV_CHECK_ERROR(err, "Failed to build program");
|
||||
|
||||
clKernelWrapper kernel = clCreateKernel(prog, name, &err);
|
||||
SPIRV_CHECK_ERROR(err, "Failed to create spv kernel");
|
||||
|
||||
clMemWrapper res = clCreateBuffer(context, CL_MEM_READ_WRITE, bytes, NULL, &err);
|
||||
SPIRV_CHECK_ERROR(err, "Failed to create res buffer");
|
||||
|
||||
err = clSetKernelArg(kernel, 0, sizeof(cl_mem), &res);
|
||||
SPIRV_CHECK_ERROR(err, "Failed to set arg 0");
|
||||
|
||||
err = clSetKernelArg(kernel, 1, sizeof(cl_mem), &lhs);
|
||||
SPIRV_CHECK_ERROR(err, "Failed to set arg 1");
|
||||
|
||||
err = clSetKernelArg(kernel, 2, sizeof(cl_mem), &rhs);
|
||||
SPIRV_CHECK_ERROR(err, "Failed to set arg 2");
|
||||
|
||||
size_t global = num;
|
||||
err = clEnqueueNDRangeKernel(queue, kernel, 1, NULL, &global, NULL, 0, NULL, NULL);
|
||||
SPIRV_CHECK_ERROR(err, "Failed to enqueue cl kernel");
|
||||
|
||||
std::vector<T> h_res(num);
|
||||
err = clEnqueueReadBuffer(queue, res, CL_TRUE, 0, bytes, &h_res[0], 0, NULL, NULL);
|
||||
SPIRV_CHECK_ERROR(err, "Failed to read from ref");
|
||||
|
||||
for (int i = 0; i < num; i++) {
|
||||
if (h_res[i] != h_ref[i]) {
|
||||
log_error("Values do not match at location %d\n", i);
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
#define TEST_SELECT_IF(control) \
|
||||
TEST_SPIRV_FUNC(op_selection_merge_if_##control) \
|
||||
{ \
|
||||
const int num = 1 << 10; \
|
||||
RandomSeed seed(gRandomSeed); \
|
||||
\
|
||||
std::vector<cl_int> lhs(num); \
|
||||
std::vector<cl_int> rhs(num); \
|
||||
std::vector<cl_int> out(num); \
|
||||
\
|
||||
for (int i = 0; i < num; i++) { \
|
||||
lhs[i] = genrand<cl_int>(seed); \
|
||||
rhs[i] = genrand<cl_int>(seed); \
|
||||
out[i] = lhs[i] < rhs[i] ? \
|
||||
(rhs[i] - lhs[i]) : (lhs[i] - rhs[i]); \
|
||||
} \
|
||||
\
|
||||
return test_selection_merge(deviceID, context, queue, \
|
||||
"select_if_" #control, \
|
||||
lhs, rhs, out); \
|
||||
} \
|
||||
|
||||
TEST_SELECT_IF(none)
|
||||
TEST_SELECT_IF(flatten)
|
||||
TEST_SELECT_IF(dont_flatten)
|
||||
|
||||
#define TEST_SELECT_SWITCH(control) \
|
||||
TEST_SPIRV_FUNC(op_selection_merge_swith_##control) \
|
||||
{ \
|
||||
const int num = 1 << 10; \
|
||||
RandomSeed seed(gRandomSeed); \
|
||||
\
|
||||
std::vector<cl_uint> lhs(num); \
|
||||
std::vector<cl_uint> rhs(num); \
|
||||
std::vector<cl_uint> out(num); \
|
||||
\
|
||||
for (int i = 0; i < num; i++) { \
|
||||
lhs[i] = genrand<cl_uint>(seed); \
|
||||
rhs[i] = genrand<cl_uint>(seed); \
|
||||
out[i] = (lhs[i] + rhs[i]) % 4; \
|
||||
} \
|
||||
\
|
||||
return test_selection_merge(deviceID, context, queue, \
|
||||
"select_switch_" #control, \
|
||||
lhs, rhs, out); \
|
||||
} \
|
||||
|
||||
TEST_SELECT_SWITCH(none)
|
||||
TEST_SELECT_SWITCH(flatten)
|
||||
TEST_SELECT_SWITCH(dont_flatten)
|
||||
Reference in New Issue
Block a user