mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 09:09:04 +08:00
Change-Id: I349ed52bcc7ed26eb0ff892acadc456ae285b92e Signed-off-by: Daria Hinz <daria.hinz@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 "runtime/command_queue/command_queue_hw.h"
|
|
#include "runtime/command_stream/aub_command_stream_receiver_hw.h"
|
|
#include "runtime/command_stream/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 SKLFamily Family;
|
|
|
|
struct EnableOCLGen9 {
|
|
EnableOCLGen9() {
|
|
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 EnableOCLGen9 enable;
|
|
} // namespace NEO
|