mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 23:03:02 +08:00
set include path to third_party/aub_stream rename third_party/aub_stream/headers -> third_party/aub_stream/aubstream Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
23 lines
422 B
C++
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
|