mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
Enable stateless compression on xehp
Related-To: NEO-5107 Signed-off-by: Milczarek, Slawomir <slawomir.milczarek@intel.com>
This commit is contained in:

committed by
Compute-Runtime-Automation

parent
2dd0e67e65
commit
e5237c2368
@ -9,9 +9,14 @@
|
||||
#include "shared/source/helpers/api_specific_config.h"
|
||||
|
||||
namespace NEO {
|
||||
bool ApiSpecificConfig::isStatelessCompressionSupported() {
|
||||
return true;
|
||||
}
|
||||
|
||||
bool ApiSpecificConfig::getHeapConfiguration() {
|
||||
return false;
|
||||
}
|
||||
|
||||
bool ApiSpecificConfig::getBindlessConfiguration() {
|
||||
if (DebugManager.flags.UseBindlessMode.get() != -1) {
|
||||
return DebugManager.flags.UseBindlessMode.get();
|
||||
@ -19,6 +24,7 @@ bool ApiSpecificConfig::getBindlessConfiguration() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
ApiSpecificConfig::ApiType ApiSpecificConfig::getApiType() {
|
||||
return ApiSpecificConfig::OCL;
|
||||
}
|
||||
|
Reference in New Issue
Block a user