2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2019-02-10 17:50:54 +01:00
|
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2019-09-26 12:10:38 +02:00
|
|
|
#include "core/memory_manager/unified_memory_manager.h"
|
2017-12-21 00:45:38 +01:00
|
|
|
#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-03-22 13:40:41 +01:00
|
|
|
#include "runtime/command_queue/enqueue_resource_barrier.h"
|
2017-12-21 00:45:38 +01:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2017-12-21 00:45:38 +01:00
|
|
|
|
|
|
|
|
typedef SKLFamily Family;
|
|
|
|
|
static auto gfxCore = IGFX_GEN9_CORE;
|
|
|
|
|
|
2019-02-10 17:50:54 +01:00
|
|
|
template class CommandQueueHw<Family>;
|
|
|
|
|
|
2017-12-21 00:45:38 +01:00
|
|
|
template <>
|
|
|
|
|
void populateFactoryTable<CommandQueueHw<Family>>() {
|
|
|
|
|
extern CommandQueueCreateFunc commandQueueFactory[IGFX_MAX_CORE];
|
|
|
|
|
commandQueueFactory[gfxCore] = CommandQueueHw<Family>::create;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|