mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

Remove: -tests with matcher for device enqueue -classes: MockDeviceQueueHw, DeviceQueueHw, SchedulerSimulation, DeviceQueueHwTest, KernelArgDevQueueTest -functions: forceDispatchScheduler, processDeviceEnqueue, dispatchScheduler Related-To: NEO-6559 Signed-off-by: Katarzyna Cencelewska <katarzyna.cencelewska@intel.com>
29 lines
755 B
C++
29 lines
755 B
C++
/*
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/helpers/populate_factory.h"
|
|
#include "shared/source/memory_manager/unified_memory_manager.h"
|
|
|
|
#include "opencl/source/command_queue/command_queue_hw.h"
|
|
#include "opencl/source/command_queue/command_queue_hw_bdw_and_later.inl"
|
|
#include "opencl/source/command_queue/enqueue_resource_barrier.h"
|
|
|
|
namespace NEO {
|
|
|
|
typedef SKLFamily Family;
|
|
static auto gfxCore = IGFX_GEN9_CORE;
|
|
|
|
template class CommandQueueHw<Family>;
|
|
|
|
template <>
|
|
void populateFactoryTable<CommandQueueHw<Family>>() {
|
|
extern CommandQueueCreateFunc commandQueueFactory[IGFX_MAX_CORE];
|
|
commandQueueFactory[gfxCore] = CommandQueueHw<Family>::create;
|
|
}
|
|
|
|
} // namespace NEO
|