mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
Updating files modified in 2018 only. Older files remain with old style copyright header Change-Id: Ic99f2e190ad74b4b7f2bd79dd7b9fa5fbe36ec92 Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
49 lines
1.5 KiB
C++
49 lines
1.5 KiB
C++
/*
|
|
* Copyright (C) 2017-2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "hw_cmds.h"
|
|
#include "runtime/command_queue/command_queue_hw.h"
|
|
#include "runtime/device_queue/device_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/command_stream/command_stream_receiver_hw.h"
|
|
#ifdef HAVE_INSTRUMENTATION
|
|
#include "runtime/event/perf_counter.h"
|
|
#endif
|
|
#include "runtime/mem_obj/buffer.h"
|
|
#include "runtime/mem_obj/image.h"
|
|
#include "runtime/sampler/sampler.h"
|
|
#include "runtime/helpers/hw_helper.h"
|
|
|
|
namespace OCLRT {
|
|
|
|
#ifdef HAVE_INSTRUMENTATION
|
|
static_assert(std::is_same<SInstrQueryPerfCountersLayout, SInstrQueryPerfCountersLayout_Gen10>::value, "SInstrQueryPerfCountersLayout_Gen10 mismatch");
|
|
#endif
|
|
|
|
extern HwHelper *hwHelperFactory[IGFX_MAX_CORE];
|
|
|
|
typedef CNLFamily Family;
|
|
static auto gfxFamily = IGFX_GEN10_CORE;
|
|
|
|
struct EnableGen10 {
|
|
EnableGen10() {
|
|
populateFactoryTable<AUBCommandStreamReceiverHw<Family>>();
|
|
populateFactoryTable<TbxCommandStreamReceiverHw<Family>>();
|
|
populateFactoryTable<CommandQueueHw<Family>>();
|
|
populateFactoryTable<DeviceQueueHw<Family>>();
|
|
populateFactoryTable<CommandStreamReceiverHw<Family>>();
|
|
populateFactoryTable<BufferHw<Family>>();
|
|
populateFactoryTable<ImageHw<Family>>();
|
|
populateFactoryTable<SamplerHw<Family>>();
|
|
hwHelperFactory[gfxFamily] = &HwHelperHw<Family>::get();
|
|
}
|
|
};
|
|
|
|
static EnableGen10 enable;
|
|
} // namespace OCLRT
|