Files
compute-runtime/shared/source/memory_manager/deferrable_deletion.h
Compute-Runtime-Validation e4d2f16632 Revert "performance: Ensure hostptrs removed before creating new one"
This reverts commit ac1d203555.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
2024-09-18 19:31:34 +02:00

19 lines
375 B
C++

/*
* Copyright (C) 2020-2024 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/utilities/idlist.h"
namespace NEO {
class DeferrableDeletion : public IDNode<DeferrableDeletion> {
public:
template <typename... Args>
static DeferrableDeletion *create(Args... args);
virtual bool apply() = 0;
};
} // namespace NEO