mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-19 06:24:51 +08:00
Cleaned up files: shared/source/helpers/blit_commands_helper.h shared/source/helpers/heap_assigner.h shared/source/memory_manager/alignment_selector.h shared/source/memory_manager/gfx_partition.h shared/source/memory_manager/memory_manager.h shared/source/os_interface/os_memory.h shared/source/utilities/heap_allocator.h Related-To: NEO-5548 Signed-off-by: Warchulski, Jaroslaw <jaroslaw.warchulski@intel.com>
44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
/*
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
#include <vector>
|
|
|
|
namespace NEO {
|
|
enum class HeapIndex : uint32_t;
|
|
|
|
class AlignmentSelector {
|
|
public:
|
|
constexpr static inline float anyWastage = 1.f;
|
|
constexpr static inline float noWastage = 0.f;
|
|
|
|
struct CandidateAlignment {
|
|
size_t alignment; // selected alignment for the allocation
|
|
bool applyForSmallerSize; // if enabled, this alignment can be used even when size < alignment
|
|
float maxMemoryWastage; // maximum percent of wasted memory after alignUp(size, alignment)
|
|
HeapIndex heap; // GPUVA heap, which allocation should go to
|
|
};
|
|
|
|
AlignmentSelector() = default;
|
|
|
|
void addCandidateAlignment(size_t alignment, bool applyForSmallerSize, float maxMemoryWastage);
|
|
void addCandidateAlignment(size_t alignment, bool applyForSmallerSize, float maxMemoryWastage, HeapIndex heap);
|
|
|
|
CandidateAlignment selectAlignment(size_t size) const;
|
|
auto &peekCandidateAlignments() const { return candidateAlignments; }
|
|
|
|
private:
|
|
std::vector<CandidateAlignment> candidateAlignments; // sorted by alignment size
|
|
};
|
|
|
|
bool operator==(const AlignmentSelector::CandidateAlignment &left, const AlignmentSelector::CandidateAlignment &right);
|
|
|
|
} // namespace NEO
|