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>
32 lines
784 B
C++
32 lines
784 B
C++
/*
|
|
* Copyright (C) 2020-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/helpers/populate_factory.h"
|
|
|
|
#include "opencl/source/command_queue/command_queue_hw.h"
|
|
#include "opencl/source/helpers/cl_hw_helper.h"
|
|
#include "opencl/source/mem_obj/buffer.h"
|
|
#include "opencl/source/mem_obj/image.h"
|
|
#include "opencl/source/sampler/sampler.h"
|
|
|
|
namespace NEO {
|
|
|
|
using Family = SKLFamily;
|
|
|
|
struct EnableOCLGen9 {
|
|
EnableOCLGen9() {
|
|
populateFactoryTable<BufferHw<Family>>();
|
|
populateFactoryTable<ClHwHelperHw<Family>>();
|
|
populateFactoryTable<CommandQueueHw<Family>>();
|
|
populateFactoryTable<ImageHw<Family>>();
|
|
populateFactoryTable<SamplerHw<Family>>();
|
|
}
|
|
};
|
|
|
|
static EnableOCLGen9 enable;
|
|
} // namespace NEO
|