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