2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2019-02-27 18:39:32 +08:00
|
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2019-02-27 18:39:32 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "unit_tests/fixtures/image_fixture.h"
|
2019-02-27 18:39:32 +08:00
|
|
|
|
2017-12-21 07:45:38 +08:00
|
|
|
#include "unit_tests/mocks/mock_context.h"
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
using NEO::MockContext;
|
2017-12-21 07:45:38 +08:00
|
|
|
|
|
|
|
static const size_t imageWidth = 7;
|
2018-03-07 21:37:09 +08:00
|
|
|
static const size_t imageHeight = 9;
|
|
|
|
static const size_t imageDepth = 11;
|
2017-12-21 07:45:38 +08:00
|
|
|
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,
|
2018-03-07 21:37:09 +08:00
|
|
|
1,
|
2017-12-21 07:45:38 +08:00
|
|
|
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;
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
NEO::Context *Image1dDefaults::context = nullptr;
|