compute-runtime/opencl/source/gen9/aub_command_stream_receiver...

28 lines
787 B
C++
Raw Normal View History

/*
* Copyright (C) 2017-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "core/helpers/array_count.h"
#include "command_stream/aub_command_stream_receiver_hw.h"
#include "command_stream/aub_command_stream_receiver_hw_bdw_plus.inl"
#include "helpers/base_object.h"
namespace NEO {
typedef SKLFamily Family;
static auto gfxCore = IGFX_GEN9_CORE;
template <>
void populateFactoryTable<AUBCommandStreamReceiverHw<Family>>() {
extern AubCommandStreamReceiverCreateFunc aubCommandStreamReceiverFactory[IGFX_MAX_CORE];
UNRECOVERABLE_IF(!isInRange(gfxCore, aubCommandStreamReceiverFactory));
aubCommandStreamReceiverFactory[gfxCore] = AUBCommandStreamReceiverHw<Family>::create;
}
template class AUBCommandStreamReceiverHw<Family>;
} // namespace NEO