Files
compute-runtime/shared/source/os_interface/linux/memory_info.h

21 lines
270 B
C
Raw Normal View History

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