mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
Change-Id: I172c5d29cc81c4f1a95f6475ec261975ee21fab6 Related-To: NEO-3016 Signed-off-by: Maciej Dziuban <maciej.dziuban@intel.com>
27 lines
669 B
C++
27 lines
669 B
C++
/*
|
|
* Copyright (C) 2017-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 SKLFamily Family;
|
|
static auto gfxCore = IGFX_GEN9_CORE;
|
|
|
|
template class CommandQueueHw<Family>;
|
|
|
|
template <>
|
|
void populateFactoryTable<CommandQueueHw<Family>>() {
|
|
extern CommandQueueCreateFunc commandQueueFactory[IGFX_MAX_CORE];
|
|
commandQueueFactory[gfxCore] = CommandQueueHw<Family>::create;
|
|
}
|
|
|
|
} // namespace NEO
|