1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
/*
* Copyright (C) 2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/helpers/constants.h"
#include "shared/source/memory_manager/allocation_properties.h"
#include <concepts>
namespace NEO {
class Device;
template <typename T>
concept PoolTraits = requires(Device *d, size_t s) {
{ T::allocationType } -> std::convertible_to<AllocationType>;
{ T::maxAllocationSize } -> std::convertible_to<size_t>;
{ T::defaultPoolSize } -> std::convertible_to<size_t>;
{ T::poolAlignment } -> std::convertible_to<size_t>;
{ T::createAllocationProperties(d, s) } -> std::same_as<AllocationProperties>;
};
struct TimestampPoolTraits {
static constexpr AllocationType allocationType = AllocationType::gpuTimestampDeviceBuffer;
static constexpr size_t maxAllocationSize = 2 * MemoryConstants::megaByte;
static constexpr size_t defaultPoolSize = 4 * MemoryConstants::megaByte;
static constexpr size_t poolAlignment = MemoryConstants::pageSize2M;
static AllocationProperties createAllocationProperties(Device *device, size_t poolSize);
};
struct GlobalSurfacePoolTraits {
static constexpr AllocationType allocationType = AllocationType::globalSurface;
static constexpr size_t maxAllocationSize = 2 * MemoryConstants::megaByte;
static constexpr size_t defaultPoolSize = 2 * MemoryConstants::megaByte;
static constexpr size_t poolAlignment = MemoryConstants::pageSize2M;
static AllocationProperties createAllocationProperties(Device *device, size_t poolSize);
};
struct ConstantSurfacePoolTraits {
static constexpr AllocationType allocationType = AllocationType::constantSurface;
static constexpr size_t maxAllocationSize = 2 * MemoryConstants::megaByte;
static constexpr size_t defaultPoolSize = 2 * MemoryConstants::megaByte;
static constexpr size_t poolAlignment = MemoryConstants::pageSize2M;
static AllocationProperties createAllocationProperties(Device *device, size_t poolSize);
};
} // namespace NEO
|