2019-09-18 19:32:33 +02:00
|
|
|
/*
|
2019-09-30 11:20:16 +02:00
|
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
2019-09-18 19:32:33 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-22 09:28:27 +01:00
|
|
|
#include "command_queue/command_queue_hw.h"
|
|
|
|
|
#include "command_queue/command_queue_hw_bdw_plus.inl"
|
2019-09-18 19:32:33 +02:00
|
|
|
#include "command_queue_helpers_gen12lp.inl"
|
2019-09-30 11:20:16 +02:00
|
|
|
#include "enqueue_init_dispatch_globals.h"
|
2019-09-18 19:32:33 +02:00
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
|
|
typedef TGLLPFamily Family;
|
|
|
|
|
static auto gfxCore = IGFX_GEN12LP_CORE;
|
|
|
|
|
|
|
|
|
|
template <>
|
|
|
|
|
void populateFactoryTable<CommandQueueHw<Family>>() {
|
|
|
|
|
extern CommandQueueCreateFunc commandQueueFactory[IGFX_MAX_CORE];
|
|
|
|
|
commandQueueFactory[gfxCore] = CommandQueueHw<Family>::create;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template class CommandQueueHw<Family>;
|
|
|
|
|
|
|
|
|
|
} // namespace NEO
|