compute-runtime/unit_tests/fixtures/simple_arg_kernel_fixture.h

247 lines
5.6 KiB
C
Raw Normal View History

/*
* Copyright (C) 2017-2018 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "gtest/gtest.h"
#include "CL/cl.h"
#include "runtime/device/device.h"
#include "runtime/helpers/file_io.h"
#include "runtime/kernel/kernel.h"
#include "runtime/program/program.h"
#include "unit_tests/mocks/mock_context.h"
#include "unit_tests/mocks/mock_program.h"
#include "unit_tests/mocks/mock_kernel.h"
#include "unit_tests/fixtures/device_fixture.h"
#include "unit_tests/fixtures/program_fixture.h"
namespace OCLRT {
class Kernel;
class Program;
template <typename T>
inline const char *type_name(T &) {
return "unknown";
}
template <>
inline const char *type_name(char &) {
return "char";
}
template <>
inline const char *type_name(int &) {
return "int";
}
template <>
inline const char *type_name(float &) {
return "float";
}
template <>
inline const char *type_name(short &) {
return "short";
}
template <>
inline const char *type_name(unsigned char &) {
return "unsigned char";
}
template <>
inline const char *type_name(unsigned int &) {
return "unsigned int";
}
template <>
inline const char *type_name(unsigned short &) {
return "unsigned short";
}
class SimpleArgKernelFixture : public ProgramFixture {
public:
using ProgramFixture::SetUp;
SimpleArgKernelFixture()
: retVal(CL_SUCCESS), pKernel(nullptr) {
}
protected:
virtual void SetUp(Device *pDevice) {
ProgramFixture::SetUp();
std::string testFile;
int forTheName = 0;
testFile.append("simple_arg_");
testFile.append(type_name(forTheName));
auto pos = testFile.find(" ");
if (pos != (size_t)-1) {
testFile.replace(pos, 1, "_");
}
cl_device_id device = pDevice;
pContext = Context::create<MockContext>(nullptr, DeviceVector(&device, 1), nullptr, nullptr, retVal);
ASSERT_EQ(CL_SUCCESS, retVal);
ASSERT_NE(nullptr, pContext);
CreateProgramFromBinary<Program>(
pContext,
&device,
testFile);
ASSERT_NE(nullptr, pProgram);
retVal = pProgram->build(
1,
&device,
nullptr,
nullptr,
nullptr,
false);
ASSERT_EQ(CL_SUCCESS, retVal);
// create a kernel
pKernel = Kernel::create<MockKernel>(
pProgram,
*pProgram->getKernelInfo("SimpleArg"),
&retVal);
ASSERT_NE(nullptr, pKernel);
ASSERT_EQ(CL_SUCCESS, retVal);
}
virtual void TearDown() {
if (pKernel) {
delete pKernel;
pKernel = nullptr;
}
pContext->release();
ProgramFixture::TearDown();
}
cl_int retVal;
Kernel *pKernel;
MockContext *pContext;
};
class SimpleArgNonUniformKernelFixture : public ProgramFixture {
public:
using ProgramFixture::SetUp;
SimpleArgNonUniformKernelFixture()
: retVal(CL_SUCCESS), kernel(nullptr) {
}
protected:
void SetUp(Device *device, Context *context) {
ProgramFixture::SetUp();
cl_device_id deviceId = device;
cl_context clContext = context;
CreateProgramFromBinary<Program>(
clContext,
&deviceId,
"simple_nonuniform",
"-cl-std=CL2.0");
ASSERT_NE(nullptr, pProgram);
retVal = pProgram->build(
1,
&deviceId,
"-cl-std=CL2.0",
nullptr,
nullptr,
false);
ASSERT_EQ(CL_SUCCESS, retVal);
kernel = Kernel::create<MockKernel>(
pProgram,
*pProgram->getKernelInfo("simpleNonUniform"),
&retVal);
ASSERT_NE(nullptr, kernel);
ASSERT_EQ(CL_SUCCESS, retVal);
}
virtual void TearDown() {
if (kernel) {
delete kernel;
kernel = nullptr;
}
ProgramFixture::TearDown();
}
cl_int retVal;
Kernel *kernel;
};
class SimpleKernelFixture : public ProgramFixture {
public:
using ProgramFixture::SetUp;
SimpleKernelFixture() {
kernelsCount = sizeof(kernels) / sizeof(Kernel *);
}
protected:
void SetUp(Device *device, Context *context) {
ProgramFixture::SetUp();
cl_device_id deviceId = device;
cl_context clContext = context;
std::string programName("simple_kernels");
CreateProgramFromBinary<Program>(
clContext,
&deviceId,
programName);
ASSERT_NE(nullptr, pProgram);
retVal = pProgram->build(
1,
&deviceId,
nullptr,
nullptr,
nullptr,
false);
ASSERT_EQ(CL_SUCCESS, retVal);
for (uint32_t i = 0; i < kernelsCount; i++) {
if ((1 << i) & kernelIds) {
std::string kernelName("simple_kernel_");
kernelName.append(std::to_string(i));
kernels[i] = Kernel::create<MockKernel>(
pProgram,
*pProgram->getKernelInfo(kernelName.c_str()),
&retVal);
ASSERT_NE(nullptr, kernels[i]);
ASSERT_EQ(CL_SUCCESS, retVal);
}
}
}
virtual void TearDown() {
for (uint32_t i = 0; i < kernelsCount; i++) {
if (kernels[i]) {
delete kernels[i];
kernels[i] = nullptr;
}
}
ProgramFixture::TearDown();
}
uint32_t kernelsCount;
cl_int retVal = CL_SUCCESS;
Kernel *kernels[5] = {};
uint32_t kernelIds = 0;
};
} // namespace OCLRT