mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-08 14:02:58 +08:00
Improve files of SipKernel class
This change: - removes redundant copying of std::vector - removes unneeded includes from the header file and introduces usage of forward declaration Signed-off-by: Patryk Wrobel <patryk.wrobel@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
4809a2a9b3
commit
de3e5d4d69
@@ -6,17 +6,21 @@
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include "shared/source/built_ins/sip_kernel_type.h"
|
||||
#include "shared/source/helpers/hw_info.h"
|
||||
#include "shared/source/program/program_info.h"
|
||||
|
||||
#include "shared/source/built_ins/sip_kernel_type.h"
|
||||
|
||||
#include <cstddef>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace NEO {
|
||||
|
||||
class Device;
|
||||
class GraphicsAllocation;
|
||||
class MemoryManager;
|
||||
|
||||
struct HardwareInfo;
|
||||
struct RootDeviceEnvironment;
|
||||
|
||||
class SipKernel {
|
||||
@@ -68,4 +72,5 @@ class SipKernel {
|
||||
GraphicsAllocation *sipAllocation = nullptr;
|
||||
SipKernelType type = SipKernelType::COUNT;
|
||||
};
|
||||
|
||||
} // namespace NEO
|
||||
|
||||
Reference in New Issue
Block a user