2019-09-18 19:32:33 +02:00
|
|
|
/*
|
2022-01-03 17:29:57 +00:00
|
|
|
* Copyright (C) 2019-2022 Intel Corporation
|
2019-09-18 19:32:33 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2022-06-24 13:56:25 +00:00
|
|
|
#include "shared/source/gen12lp/hw_cmds.h"
|
2020-10-14 14:04:29 +02:00
|
|
|
#include "shared/source/helpers/populate_factory.h"
|
|
|
|
|
|
2020-02-22 22:50:57 +01:00
|
|
|
#include "opencl/source/command_queue/command_queue_hw.h"
|
2021-08-03 11:48:35 +00:00
|
|
|
#include "opencl/source/command_queue/command_queue_hw_bdw_and_later.inl"
|
2020-02-22 22:50:57 +01:00
|
|
|
|
2019-09-18 19:32:33 +02:00
|
|
|
#include "command_queue_helpers_gen12lp.inl"
|
|
|
|
|
|
|
|
|
|
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
|