Merge pull request #91727 from RandomShaper/cmd_queue_prealloc

`CommandQueueMT`: Pre-allocate memory to avoid a bunch of allocations at startup
This commit is contained in:
Rémi Verschelde 2024-05-10 09:55:57 +02:00
commit e6780b54bb
No known key found for this signature in database
GPG key ID: C3336907360768E1
2 changed files with 2 additions and 3 deletions

View file

@ -42,6 +42,7 @@ void CommandQueueMT::unlock() {
} }
CommandQueueMT::CommandQueueMT() { CommandQueueMT::CommandQueueMT() {
command_mem.reserve(DEFAULT_COMMAND_MEM_SIZE_KB * 1024);
} }
CommandQueueMT::~CommandQueueMT() { CommandQueueMT::~CommandQueueMT() {

View file

@ -325,9 +325,7 @@ class CommandQueueMT {
/***** BASE *******/ /***** BASE *******/
enum { static const uint32_t DEFAULT_COMMAND_MEM_SIZE_KB = 64;
DEFAULT_COMMAND_MEM_SIZE_KB = 256,
};
BinaryMutex mutex; BinaryMutex mutex;
LocalVector<uint8_t> command_mem; LocalVector<uint8_t> command_mem;