49 lines
1.4 KiB
C++
49 lines
1.4 KiB
C++
/*
|
|
* Copyright (C) 2019-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "shared/source/built_ins/built_ins.h"
|
|
#include "shared/source/command_container/encode_surface_state.h"
|
|
#include "shared/test/common/mocks/mock_graphics_allocation.h"
|
|
|
|
#include "opencl/source/helpers/hardware_commands_helper.h"
|
|
#include "opencl/source/kernel/kernel.h"
|
|
#include "opencl/test/unit_test/fixtures/built_in_fixture.h"
|
|
#include "opencl/test/unit_test/fixtures/cl_device_fixture.h"
|
|
#include "opencl/test/unit_test/fixtures/context_fixture.h"
|
|
#include "opencl/test/unit_test/mocks/mock_context.h"
|
|
#include "opencl/test/unit_test/mocks/mock_kernel.h"
|
|
#include "opencl/test/unit_test/mocks/mock_program.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
#include <memory>
|
|
|
|
using namespace NEO;
|
|
|
|
struct HardwareCommandsTest : ClDeviceFixture,
|
|
ContextFixture,
|
|
BuiltInFixture,
|
|
::testing::Test {
|
|
|
|
using BuiltInFixture::setUp;
|
|
using ContextFixture::setUp;
|
|
|
|
void SetUp() override;
|
|
void TearDown() override;
|
|
|
|
void addSpaceForSingleKernelArg();
|
|
|
|
size_t sizeRequiredCS;
|
|
size_t sizeRequiredISH;
|
|
|
|
std::unique_ptr<MockKernelWithInternals> mockKernelWithInternal;
|
|
Kernel::SimpleKernelArgInfo kernelArgInfo = {};
|
|
std::vector<Kernel::SimpleKernelArgInfo> kernelArguments;
|
|
};
|