/* * Copyright (C) 2017-2020 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "opencl/source/helpers/task_information.h" namespace NEO { template void KernelOperation::ResourceCleaner::operator()(ObjectT *object) { storageForAllocations->storeAllocation(std::unique_ptr(object->getGraphicsAllocation()), REUSABLE_ALLOCATION); delete object; } } // namespace NEO