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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "runtime/command_queue/command_queue_hw.h"
|
|
|
|
#include "runtime/command_stream/aub_command_stream_receiver_hw.h"
|
|
|
|
#include "runtime/command_stream/command_stream_receiver_hw.h"
|
|
|
|
#include "runtime/command_stream/tbx_command_stream_receiver_hw.h"
|
|
|
|
#include "runtime/device_queue/device_queue_hw.h"
|
|
|
|
#include "runtime/mem_obj/buffer.h"
|
|
|
|
#include "runtime/mem_obj/image.h"
|
|
|
|
#include "runtime/sampler/sampler.h"
|
|
|
|
|
|
|
|
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
|