Files
compute-runtime/opencl/test/unit_test/fixtures/image_fixture.cpp
Maciej Dziuban 12ebe55679 OpenCL Queue Families extension 4/n
Check queue capabilities in enqueue calls for images

Signed-off-by: Maciej Dziuban <maciej.dziuban@intel.com>
Related-To: NEO-5120
2020-11-30 17:16:36 +01:00

104 lines
1.7 KiB
C++

/*
* Copyright (C) 2017-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "opencl/test/unit_test/fixtures/image_fixture.h"
#include "opencl/test/unit_test/mocks/mock_context.h"
using NEO::MockContext;
static const size_t imageWidth = 7;
static const size_t imageHeight = 9;
static const size_t imageDepth = 11;
static const size_t imageArray = imageDepth;
const cl_image_format Image1dDefaults::imageFormat = {
CL_R,
CL_FLOAT};
const cl_image_format LuminanceImage::imageFormat = {
CL_LUMINANCE,
CL_FLOAT};
const cl_image_desc Image1dDefaults::imageDesc = {
CL_MEM_OBJECT_IMAGE1D,
imageWidth,
1,
1,
1,
0,
0,
0,
0,
{nullptr}};
const cl_image_desc Image1dBufferDefaults::imageDesc = {
CL_MEM_OBJECT_IMAGE1D_BUFFER,
imageWidth,
1,
1,
1,
0,
0,
0,
0,
{nullptr}};
const cl_image_desc Image2dDefaults::imageDesc = {
CL_MEM_OBJECT_IMAGE2D,
imageWidth,
imageHeight,
1,
1,
0,
0,
0,
0,
{nullptr}};
const cl_image_desc Image3dDefaults::imageDesc = {
CL_MEM_OBJECT_IMAGE3D,
imageWidth,
imageHeight,
imageDepth,
1,
0,
0,
0,
0,
{nullptr}};
const cl_image_desc Image2dArrayDefaults::imageDesc = {
CL_MEM_OBJECT_IMAGE2D_ARRAY,
imageWidth,
imageHeight,
0,
imageArray,
0,
0,
0,
0,
{nullptr}};
const cl_image_desc Image1dArrayDefaults::imageDesc = {
CL_MEM_OBJECT_IMAGE1D_ARRAY,
imageWidth,
0,
0,
imageArray,
0,
0,
0,
0,
{nullptr}};
static float imageMemory[imageWidth * imageHeight * imageDepth] = {};
void *Image1dDefaults::hostPtr = imageMemory;
NEO::Context *Image1dDefaults::context = nullptr;