2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2021-05-16 20:51:16 +02:00
|
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/command_stream/command_stream_receiver.h"
|
2021-10-21 14:50:10 +00:00
|
|
|
#include "shared/test/common/fixtures/memory_management_fixture.h"
|
2020-02-24 10:22:30 +01:00
|
|
|
|
2020-02-23 15:20:22 +01:00
|
|
|
#include "opencl/test/unit_test/command_queue/command_queue_fixture.h"
|
|
|
|
#include "opencl/test/unit_test/command_stream/command_stream_fixture.h"
|
|
|
|
#include "opencl/test/unit_test/fixtures/simple_arg_kernel_fixture.h"
|
2017-12-21 00:45:38 +01:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2017-12-21 00:45:38 +01:00
|
|
|
|
|
|
|
struct SimpleArgFixtureFactory {
|
2019-03-26 11:59:46 +01:00
|
|
|
typedef NEO::CommandStreamFixture CommandStreamFixture;
|
|
|
|
typedef NEO::CommandQueueHwFixture CommandQueueFixture;
|
|
|
|
typedef NEO::SimpleArgKernelFixture KernelFixture;
|
2017-12-21 00:45:38 +01:00
|
|
|
};
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|