-
Notifications
You must be signed in to change notification settings - Fork 6k
[Impeller] track the sizes of all outstanding MTLTexture allocations and report per frame in MB, matching Vulkan implementation. #53618
Changes from all commits
4a8579b
90c68ef
eb73420
5bbf312
0599098
491390a
ebe3c03
d3d1366
1af8e93
e3b4bcd
51ed874
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,18 +6,42 @@ | |
#define FLUTTER_IMPELLER_RENDERER_BACKEND_METAL_ALLOCATOR_MTL_H_ | ||
|
||
#include <Metal/Metal.h> | ||
#include <atomic> | ||
|
||
#include "impeller/base/thread.h" | ||
#include "impeller/core/allocator.h" | ||
|
||
namespace impeller { | ||
|
||
class DebugAllocatorStats { | ||
public: | ||
DebugAllocatorStats() {} | ||
|
||
~DebugAllocatorStats() {} | ||
|
||
/// Increment the tracked allocation size in bytes. | ||
void Increment(size_t size); | ||
|
||
/// Decrement the tracked allocation size in bytes. | ||
void Decrement(size_t size); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
|
||
/// Get the current tracked allocation size in MB. | ||
size_t GetAllocationSizeMB(); | ||
|
||
private: | ||
std::atomic<size_t> size_ = 0; | ||
}; | ||
|
||
class AllocatorMTL final : public Allocator { | ||
public: | ||
AllocatorMTL(); | ||
|
||
// |Allocator| | ||
~AllocatorMTL() override; | ||
|
||
// |Allocator| | ||
size_t DebugGetHeapUsage() const override; | ||
|
||
private: | ||
friend class ContextMTL; | ||
|
||
|
@@ -26,6 +50,12 @@ class AllocatorMTL final : public Allocator { | |
bool supports_memoryless_targets_ = false; | ||
bool supports_uma_ = false; | ||
bool is_valid_ = false; | ||
|
||
#ifdef IMPELLER_DEBUG | ||
std::shared_ptr<DebugAllocatorStats> debug_allocater_ = | ||
std::make_shared<DebugAllocatorStats>(); | ||
#endif // IMPELLER_DEBUG | ||
|
||
ISize max_texture_supported_; | ||
|
||
AllocatorMTL(id<MTLDevice> device, std::string label); | ||
|
@@ -47,6 +77,9 @@ class AllocatorMTL final : public Allocator { | |
// |Allocator| | ||
ISize GetMaxTextureSizeSupported() const override; | ||
|
||
// |Allocator| | ||
void DebugTraceMemoryStatistics() const override; | ||
|
||
AllocatorMTL(const AllocatorMTL&) = delete; | ||
|
||
AllocatorMTL& operator=(const AllocatorMTL&) = delete; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,9 @@ | |
|
||
#include "flutter/fml/build_config.h" | ||
#include "flutter/fml/logging.h" | ||
#include "fml/trace_event.h" | ||
#include "impeller/base/validation.h" | ||
#include "impeller/core/formats.h" | ||
#include "impeller/renderer/backend/metal/device_buffer_mtl.h" | ||
#include "impeller/renderer/backend/metal/formats_mtl.h" | ||
#include "impeller/renderer/backend/metal/texture_mtl.h" | ||
|
@@ -88,6 +90,19 @@ static bool SupportsLossyTextureCompression(id<MTLDevice> device) { | |
#endif | ||
} | ||
|
||
void DebugAllocatorStats::Increment(size_t size) { | ||
size_.fetch_add(size, std::memory_order_relaxed); | ||
} | ||
|
||
void DebugAllocatorStats::Decrement(size_t size) { | ||
size_.fetch_sub(size, std::memory_order_relaxed); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you think we should have an assert that size will not go below zero? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Well since its an unsigned type, it won't go below zero 🤓 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Semantics! haha. It'll go below zero, but you won't like it. |
||
} | ||
|
||
size_t DebugAllocatorStats::GetAllocationSizeMB() { | ||
size_t new_value = size_ / 1000000; | ||
return new_value; | ||
} | ||
|
||
AllocatorMTL::AllocatorMTL(id<MTLDevice> device, std::string label) | ||
: device_(device), allocator_label_(std::move(label)) { | ||
if (!device_) { | ||
|
@@ -212,11 +227,23 @@ static MTLStorageMode ToMTLStorageMode(StorageMode mode, | |
} | ||
} | ||
|
||
#ifdef IMPELLER_DEBUG | ||
if (desc.storage_mode != StorageMode::kDeviceTransient) { | ||
debug_allocater_->Increment(desc.GetByteSizeOfAllMipLevels()); | ||
} | ||
#endif // IMPELLER_DEBUG | ||
|
||
auto texture = [device_ newTextureWithDescriptor:mtl_texture_desc]; | ||
if (!texture) { | ||
return nullptr; | ||
} | ||
return TextureMTL::Create(desc, texture); | ||
std::shared_ptr<TextureMTL> result_texture = | ||
TextureMTL::Create(desc, texture); | ||
#ifdef IMPELLER_DEBUG | ||
result_texture->SetDebugAllocator(debug_allocater_); | ||
#endif // IMPELLER_DEBUG | ||
|
||
return result_texture; | ||
} | ||
|
||
uint16_t AllocatorMTL::MinimumBytesPerRow(PixelFormat format) const { | ||
|
@@ -228,4 +255,21 @@ static MTLStorageMode ToMTLStorageMode(StorageMode mode, | |
return max_texture_supported_; | ||
} | ||
|
||
size_t AllocatorMTL::DebugGetHeapUsage() const { | ||
#ifdef IMPELLER_DEBUG | ||
return debug_allocater_->GetAllocationSizeMB(); | ||
#else | ||
return 0u; | ||
#endif // IMPELLER_DEBUG | ||
} | ||
|
||
void AllocatorMTL::DebugTraceMemoryStatistics() const { | ||
#ifdef IMPELLER_DEBUG | ||
size_t allocated_size = DebugGetHeapUsage(); | ||
FML_TRACE_COUNTER("flutter", "AllocatorMTL", | ||
reinterpret_cast<int64_t>(this), // Trace Counter ID | ||
"MemoryBudgetUsageMB", allocated_size); | ||
#endif // IMPELLER_DEBUG | ||
} | ||
|
||
} // namespace impeller |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
// Copyright 2013 The Flutter Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
|
||
#include "flutter/testing/testing.h" | ||
#include "impeller/core/formats.h" | ||
#include "impeller/core/texture_descriptor.h" | ||
#include "impeller/playground/playground_test.h" | ||
#include "impeller/renderer/backend/metal/allocator_mtl.h" | ||
#include "impeller/renderer/backend/metal/context_mtl.h" | ||
#include "impeller/renderer/backend/metal/formats_mtl.h" | ||
#include "impeller/renderer/backend/metal/lazy_drawable_holder.h" | ||
#include "impeller/renderer/backend/metal/texture_mtl.h" | ||
#include "impeller/renderer/capabilities.h" | ||
|
||
#include <QuartzCore/CAMetalLayer.h> | ||
#include <memory> | ||
#include <thread> | ||
|
||
#include "gtest/gtest.h" | ||
|
||
namespace impeller { | ||
namespace testing { | ||
|
||
using AllocatorMTLTest = PlaygroundTest; | ||
INSTANTIATE_METAL_PLAYGROUND_SUITE(AllocatorMTLTest); | ||
|
||
TEST_P(AllocatorMTLTest, DebugTraceMemoryStatistics) { | ||
auto& context_mtl = ContextMTL::Cast(*GetContext()); | ||
const auto& allocator = context_mtl.GetResourceAllocator(); | ||
|
||
EXPECT_EQ(allocator->DebugGetHeapUsage(), 0u); | ||
|
||
// Memoryless texture does not increase allocated size. | ||
{ | ||
TextureDescriptor desc; | ||
desc.format = PixelFormat::kR8G8B8A8UNormInt; | ||
desc.storage_mode = StorageMode::kDeviceTransient; | ||
desc.size = {1000, 1000}; | ||
auto texture_1 = allocator->CreateTexture(desc); | ||
|
||
EXPECT_EQ(allocator->DebugGetHeapUsage(), 0u); | ||
|
||
// Private storage texture increases allocated size. | ||
desc.storage_mode = StorageMode::kDevicePrivate; | ||
auto texture_2 = allocator->CreateTexture(desc); | ||
|
||
#ifdef IMPELLER_DEBUG | ||
EXPECT_EQ(allocator->DebugGetHeapUsage(), 4u); | ||
#else | ||
EXPECT_EQ(allocator->DebugGetHeapUsage(), 0u); | ||
#endif // IMPELLER_DEBUG | ||
|
||
// Host storage texture increases allocated size. | ||
desc.storage_mode = StorageMode::kHostVisible; | ||
auto texture_3 = allocator->CreateTexture(desc); | ||
|
||
#ifdef IMPELLER_DEBUG | ||
EXPECT_EQ(allocator->DebugGetHeapUsage(), 8u); | ||
#else | ||
EXPECT_EQ(allocator->DebugGetHeapUsage(), 0u); | ||
#endif // IMPELLER_DEBUG | ||
} | ||
|
||
// After all textures are out of scope, memory has been decremented. | ||
EXPECT_EQ(allocator->DebugGetHeapUsage(), 0u); | ||
} | ||
|
||
} // namespace testing | ||
} // namespace impeller |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: note the units of
size
in a docstring.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done