Files
compute-runtime/third_party/aub_stream/headers/page_info.h
Mateusz Hoppe 137790def2 Update aubstream
Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
2022-09-19 11:32:17 +02:00

23 lines
383 B
C++

/*
* Copyright (C) 2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <cstdint>
#include <type_traits>
namespace aub_stream {
struct PageInfo {
uint64_t physicalAddress;
size_t size;
bool isLocalMemory;
uint32_t memoryBank;
};
static_assert(std::is_pod<PageInfo>::value, "PageInfo is not POD type");
} // namespace aub_stream