mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-25 13:33:02 +08:00
Related-To: NEO-3677 Change-Id: Ib60dea2bcaaf5feea97d61cb9f54baee4c6b4b64 Signed-off-by: Jobczyk, Lukasz <lukasz.jobczyk@intel.com>
26 lines
670 B
C++
26 lines
670 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/memory_manager/unified_memory_manager.h"
|
|
#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"
|
|
|
|
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
|