2018-04-06 19:48:49 +08:00
|
|
|
/*
|
2019-02-11 00:50:54 +08:00
|
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
2018-04-06 19:48:49 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-04-06 19:48:49 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "runtime/command_queue/command_queue_hw.h"
|
2019-05-10 16:46:54 +08:00
|
|
|
#include "runtime/command_queue/command_queue_hw_bdw_plus.inl"
|
2019-03-22 20:40:41 +08:00
|
|
|
#include "runtime/command_queue/enqueue_resource_barrier.h"
|
2019-02-27 18:39:32 +08:00
|
|
|
#include "runtime/memory_manager/svm_memory_manager.h"
|
2018-04-06 19:48:49 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2018-04-06 19:48:49 +08:00
|
|
|
|
|
|
|
typedef CNLFamily Family;
|
|
|
|
static auto gfxCore = IGFX_GEN10_CORE;
|
|
|
|
|
2019-02-11 00:50:54 +08:00
|
|
|
template class CommandQueueHw<Family>;
|
|
|
|
|
2018-04-06 19:48:49 +08:00
|
|
|
template <>
|
|
|
|
void populateFactoryTable<CommandQueueHw<Family>>() {
|
|
|
|
extern CommandQueueCreateFunc commandQueueFactory[IGFX_MAX_CORE];
|
|
|
|
commandQueueFactory[gfxCore] = CommandQueueHw<Family>::create;
|
|
|
|
}
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|