mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-09 14:33:04 +08:00
Change-Id: Id8ed0e680f77b4dd9614f0096c3e6d9a1d04b3d3 Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/command_stream/command_stream_receiver_hw.h"
|
|
#include "runtime/command_queue/command_queue_hw.h"
|
|
#include "runtime/command_stream/aub_command_stream_receiver_hw.h"
|
|
#include "runtime/command_stream/tbx_command_stream_receiver_hw.h"
|
|
#include "runtime/device_queue/device_queue_hw.h"
|
|
#include "runtime/event/perf_counter.h"
|
|
#include "runtime/mem_obj/buffer.h"
|
|
#include "runtime/mem_obj/image.h"
|
|
#include "runtime/sampler/sampler.h"
|
|
|
|
#include <type_traits>
|
|
|
|
namespace NEO {
|
|
|
|
typedef BDWFamily Family;
|
|
|
|
struct EnableOCLGen8 {
|
|
EnableOCLGen8() {
|
|
populateFactoryTable<AUBCommandStreamReceiverHw<Family>>();
|
|
populateFactoryTable<TbxCommandStreamReceiverHw<Family>>();
|
|
populateFactoryTable<CommandQueueHw<Family>>();
|
|
populateFactoryTable<DeviceQueueHw<Family>>();
|
|
populateFactoryTable<CommandStreamReceiverHw<Family>>();
|
|
populateFactoryTable<BufferHw<Family>>();
|
|
populateFactoryTable<ImageHw<Family>>();
|
|
populateFactoryTable<SamplerHw<Family>>();
|
|
}
|
|
};
|
|
|
|
static EnableOCLGen8 enable;
|
|
} // namespace NEO
|