compute-runtime/runtime/os_interface/linux/memory_info.h

20 lines
256 B
C++

/*
* Copyright (C) 2019 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
namespace NEO {
struct MemoryInfo {
MemoryInfo() = default;
virtual ~MemoryInfo() = 0;
};
inline MemoryInfo::~MemoryInfo(){};
} // namespace NEO