2019-09-19 01:32:33 +08:00
|
|
|
/*
|
2020-01-15 17:03:21 +08:00
|
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
2019-09-19 01:32:33 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/command_stream/command_stream_receiver_hw.h"
|
2020-02-24 17:22:30 +08:00
|
|
|
|
2020-02-23 05:50:57 +08:00
|
|
|
#include "opencl/source/command_queue/command_queue_hw.h"
|
|
|
|
#include "opencl/source/command_stream/aub_command_stream_receiver_hw.h"
|
|
|
|
#include "opencl/source/command_stream/tbx_command_stream_receiver_hw.h"
|
|
|
|
#include "opencl/source/device_queue/device_queue_hw.h"
|
|
|
|
#include "opencl/source/mem_obj/buffer.h"
|
|
|
|
#include "opencl/source/mem_obj/image.h"
|
|
|
|
#include "opencl/source/sampler/sampler.h"
|
2019-09-19 01:32:33 +08:00
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
typedef TGLLPFamily Family;
|
|
|
|
|
2020-01-15 17:03:21 +08:00
|
|
|
struct EnableOCLGen12LP {
|
|
|
|
EnableOCLGen12LP() {
|
2019-09-19 01:32:33 +08:00
|
|
|
populateFactoryTable<AUBCommandStreamReceiverHw<Family>>();
|
|
|
|
populateFactoryTable<TbxCommandStreamReceiverHw<Family>>();
|
|
|
|
populateFactoryTable<CommandQueueHw<Family>>();
|
|
|
|
populateFactoryTable<DeviceQueueHw<Family>>();
|
|
|
|
populateFactoryTable<CommandStreamReceiverHw<Family>>();
|
|
|
|
populateFactoryTable<BufferHw<Family>>();
|
|
|
|
populateFactoryTable<ImageHw<Family>>();
|
|
|
|
populateFactoryTable<SamplerHw<Family>>();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-01-15 17:03:21 +08:00
|
|
|
static EnableOCLGen12LP enable;
|
2019-09-19 01:32:33 +08:00
|
|
|
} // namespace NEO
|