Files
compute-runtime/third_party/aub_stream/aubstream/headers/physical_allocation_info.h
ocldev 9560b946fa dependencies update
Signed-off-by: ocldev <ocldev@intel.com>
2022-11-24 12:34:25 +01:00

23 lines
422 B
C++

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