Files
intel-graphics-compiler/visa/Mem_Manager.cpp
Wei Chen a33384c646 (NFC) Apply LLVM coding style to vISA C++ files
Apply LLVM coding style to vISA C++ files (*.cpp/*.h/*.hpp). The iga/ folder is
excluded currently.
2022-10-14 19:09:49 +02:00

19 lines
518 B
C++

/*========================== begin_copyright_notice ============================
Copyright (C) 2017-2021 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
// An arena based memory manager implementation.
// NOTE: Object requiring dword alignment is NOT supported.
#include "Mem_Manager.h"
using namespace vISA;
Mem_Manager::Mem_Manager(size_t defaultArenaSize)
: _arenaManager(defaultArenaSize) {}
Mem_Manager::~Mem_Manager() {}