mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-29 17:13:29 +08:00
- call queryMemoryInfo on Drm::create() Change-Id: Ib0532894f271bd4ab3dcbb281d0bddf2a01d4afe Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
20 lines
260 B
C++
20 lines
260 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace OCLRT {
|
|
|
|
struct MemoryInfo {
|
|
MemoryInfo() = default;
|
|
virtual ~MemoryInfo() = 0;
|
|
};
|
|
|
|
inline MemoryInfo::~MemoryInfo(){};
|
|
|
|
} // namespace OCLRT
|