2019-01-10 15:36:57 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "runtime/command_queue/command_queue_hw.h"
|
2019-05-10 10:46:54 +02:00
|
|
|
#include "runtime/command_queue/command_queue_hw_bdw_plus.inl"
|
2019-01-10 15:36:57 +01:00
|
|
|
#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
|