refactor: remove not needed code

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2025-08-12 11:34:50 +00:00
committed by Compute-Runtime-Automation
parent 167ca6e50c
commit c75d9d30b0
8 changed files with 1 additions and 68 deletions

View File

@@ -727,12 +727,4 @@ std::unique_lock<std::mutex> Context::obtainOwnershipForMultiRootDeviceAllocator
return std::unique_lock<std::mutex>(multiRootDeviceAllocatorMtx);
}
void Context::setContextAsNonZebin() {
this->nonZebinContext = true;
}
bool Context::checkIfContextIsNonZebin() const {
return this->nonZebinContext;
}
} // namespace NEO

View File

@@ -255,8 +255,6 @@ class Context : public BaseObject<_cl_context> {
TagAllocatorBase *getMultiRootDeviceTimestampPacketAllocator();
std::unique_lock<std::mutex> obtainOwnershipForMultiRootDeviceAllocator();
void setMultiRootDeviceTimestampPacketAllocator(std::unique_ptr<TagAllocatorBase> &allocator);
void setContextAsNonZebin();
bool checkIfContextIsNonZebin() const;
void initializeUsmAllocationPools();
void cleanupUsmAllocationPools();
@@ -320,7 +318,6 @@ class Context : public BaseObject<_cl_context> {
bool interopUserSync = false;
bool resolvesRequiredInKernels = false;
bool nonZebinContext = false;
bool usmPoolInitialized = false;
bool platformManagersInitialized = false;
};