mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-12 17:33:00 +08:00
Related-To: NEO-2388 Change-Id: I4da92efe7f875f409cd62519a31ed4509b55bda7 Signed-off-by: Jacek Danecki <jacek.danecki@intel.com>
25 lines
625 B
C++
25 lines
625 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/command_queue/gpgpu_walker.h"
|
|
#include "runtime/command_queue/gpgpu_walker.inl"
|
|
#include "runtime/command_queue/gpgpu_walker_base.inl"
|
|
#include "runtime/command_queue/hardware_interface.h"
|
|
#include "runtime/command_queue/hardware_interface.inl"
|
|
#include "runtime/command_queue/hardware_interface_base.inl"
|
|
#include "runtime/gen11/hw_info.h"
|
|
|
|
namespace NEO {
|
|
|
|
template class HardwareInterface<ICLFamily>;
|
|
|
|
template class GpgpuWalkerHelper<ICLFamily>;
|
|
|
|
template struct EnqueueOperation<ICLFamily>;
|
|
|
|
} // namespace NEO
|