mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-29 17:13:29 +08:00
Updating files modified in 2018 only. Older files remain with old style copyright header Change-Id: Ic99f2e190ad74b4b7f2bd79dd7b9fa5fbe36ec92 Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
27 lines
809 B
C++
27 lines
809 B
C++
/*
|
|
* Copyright (C) 2017-2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/command_stream/aub_command_stream_receiver_hw.h"
|
|
#include "runtime/command_stream/aub_command_stream_receiver_hw.inl"
|
|
#include "runtime/helpers/base_object.h"
|
|
#include "runtime/helpers/array_count.h"
|
|
|
|
namespace OCLRT {
|
|
|
|
typedef CNLFamily Family;
|
|
static auto gfxCore = IGFX_GEN10_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 OCLRT
|