mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-07 21:27:04 +08:00
refactor: remove cl pipe related logic
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
a017025e67
commit
374863ba08
@@ -50,7 +50,6 @@ struct RuntimeCapabilityTable {
|
||||
bool instrumentationEnabled;
|
||||
bool supportCacheFlushAfterWalker;
|
||||
bool supportsImages;
|
||||
bool supportsPipes;
|
||||
bool supportsOcl21Features;
|
||||
bool supportsOnDemandPageFaults;
|
||||
bool supportsIndependentForwardProgress;
|
||||
@@ -112,7 +111,6 @@ inline bool operator==(const RuntimeCapabilityTable &lhs, const RuntimeCapabilit
|
||||
result &= (lhs.deviceName == rhs.deviceName);
|
||||
result &= (lhs.supportCacheFlushAfterWalker == rhs.supportCacheFlushAfterWalker);
|
||||
result &= (lhs.supportsImages == rhs.supportsImages);
|
||||
result &= (lhs.supportsPipes == rhs.supportsPipes);
|
||||
result &= (lhs.supportsOcl21Features == rhs.supportsOcl21Features);
|
||||
result &= (lhs.supportsOnDemandPageFaults == rhs.supportsOnDemandPageFaults);
|
||||
result &= (lhs.supportsIndependentForwardProgress == rhs.supportsIndependentForwardProgress);
|
||||
|
||||
Reference in New Issue
Block a user