mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-31 03:20:47 +08:00
memory_info engine_info os_inc Related-To: NEO-3982 Change-Id: I52ef357f790497fc6efcd590db277ce96ec1e579 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
20 lines
256 B
C++
20 lines
256 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace NEO {
|
|
|
|
struct EngineInfo {
|
|
EngineInfo() = default;
|
|
virtual ~EngineInfo() = 0;
|
|
};
|
|
|
|
inline EngineInfo::~EngineInfo() {}
|
|
|
|
} // namespace NEO
|