16 lines
422 B
C++
16 lines
422 B
C++
/*
|
|
* Copyright (C) 2019-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
namespace NEO {
|
|
template <typename ObjectT>
|
|
void KernelOperation::ResourceCleaner::operator()(ObjectT *object) {
|
|
storageForAllocations->storeAllocation(std::unique_ptr<GraphicsAllocation>(object->getGraphicsAllocation()),
|
|
REUSABLE_ALLOCATION);
|
|
delete object;
|
|
}
|
|
} // namespace NEO
|