mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

Related-To: NEO-3964 Change-Id: Ib2660e8f7d92fc970172517b3e2ddfd607e09ec1 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
43 lines
1.3 KiB
C++
43 lines
1.3 KiB
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/command_stream/command_stream_receiver_hw.h"
|
|
#include "shared/source/helpers/populate_factory.h"
|
|
|
|
#include "opencl/source/command_queue/command_queue_hw.h"
|
|
#include "opencl/source/command_stream/aub_command_stream_receiver_hw.h"
|
|
#include "opencl/source/command_stream/tbx_command_stream_receiver_hw.h"
|
|
#include "opencl/source/device_queue/device_queue_hw.h"
|
|
#include "opencl/source/event/perf_counter.h"
|
|
#include "opencl/source/helpers/cl_hw_helper.h"
|
|
#include "opencl/source/mem_obj/buffer.h"
|
|
#include "opencl/source/mem_obj/image.h"
|
|
#include "opencl/source/sampler/sampler.h"
|
|
|
|
#include <type_traits>
|
|
|
|
namespace NEO {
|
|
|
|
typedef SKLFamily Family;
|
|
|
|
struct EnableOCLGen9 {
|
|
EnableOCLGen9() {
|
|
populateFactoryTable<AUBCommandStreamReceiverHw<Family>>();
|
|
populateFactoryTable<BufferHw<Family>>();
|
|
populateFactoryTable<ClHwHelperHw<Family>>();
|
|
populateFactoryTable<CommandQueueHw<Family>>();
|
|
populateFactoryTable<CommandStreamReceiverHw<Family>>();
|
|
populateFactoryTable<DeviceQueueHw<Family>>();
|
|
populateFactoryTable<ImageHw<Family>>();
|
|
populateFactoryTable<SamplerHw<Family>>();
|
|
populateFactoryTable<TbxCommandStreamReceiverHw<Family>>();
|
|
}
|
|
};
|
|
|
|
static EnableOCLGen9 enable;
|
|
} // namespace NEO
|