mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Change-Id: I172c5d29cc81c4f1a95f6475ec261975ee21fab6 Related-To: NEO-3016 Signed-off-by: Maciej Dziuban <maciej.dziuban@intel.com>
26 lines
669 B
C++
26 lines
669 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/command_queue/command_queue_hw.h"
|
|
#include "runtime/command_queue/command_queue_hw_bdw_plus.inl"
|
|
#include "runtime/command_queue/enqueue_resource_barrier.h"
|
|
#include "runtime/memory_manager/svm_memory_manager.h"
|
|
|
|
namespace NEO {
|
|
|
|
typedef ICLFamily Family;
|
|
static auto gfxCore = IGFX_GEN11_CORE;
|
|
|
|
template class CommandQueueHw<Family>;
|
|
|
|
template <>
|
|
void populateFactoryTable<CommandQueueHw<Family>>() {
|
|
extern CommandQueueCreateFunc commandQueueFactory[IGFX_MAX_CORE];
|
|
commandQueueFactory[gfxCore] = CommandQueueHw<Family>::create;
|
|
}
|
|
} // namespace NEO
|