mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 23:03:02 +08:00
refactor: remove not needed code
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
167ca6e50c
commit
c75d9d30b0
@@ -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
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user