93 lines
2.1 KiB
C++
93 lines
2.1 KiB
C++
/*
|
|
* Copyright (C) 2020-2024 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/debug_settings/debug_settings_manager.h"
|
|
#include "shared/source/helpers/api_specific_config.h"
|
|
|
|
#include "opencl/source/os_interface/ocl_reg_path.h"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace NEO {
|
|
StackVec<const char *, 4> validClPrefixes;
|
|
StackVec<NEO::DebugVarPrefix, 4> validClPrefixTypes;
|
|
bool ApiSpecificConfig::isStatelessCompressionSupported() {
|
|
return true;
|
|
}
|
|
|
|
bool ApiSpecificConfig::getGlobalBindlessHeapConfiguration(const ReleaseHelper *releaseHelper) {
|
|
return false;
|
|
}
|
|
|
|
bool ApiSpecificConfig::getBindlessMode(const Device &device) {
|
|
if (debugManager.flags.UseBindlessMode.get() != -1) {
|
|
return debugManager.flags.UseBindlessMode.get();
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
bool ApiSpecificConfig::isDeviceAllocationCacheEnabled() {
|
|
return true;
|
|
}
|
|
|
|
bool ApiSpecificConfig::isHostAllocationCacheEnabled() {
|
|
return true;
|
|
}
|
|
|
|
bool ApiSpecificConfig::isDeviceUsmPoolingEnabled() {
|
|
return true;
|
|
}
|
|
|
|
bool ApiSpecificConfig::isHostUsmPoolingEnabled() {
|
|
return true;
|
|
}
|
|
|
|
ApiSpecificConfig::ApiType ApiSpecificConfig::getApiType() {
|
|
return ApiSpecificConfig::OCL;
|
|
}
|
|
|
|
std::string ApiSpecificConfig::getName() {
|
|
return "ocl";
|
|
}
|
|
|
|
uint64_t ApiSpecificConfig::getReducedMaxAllocSize(uint64_t maxAllocSize) {
|
|
return maxAllocSize / 2;
|
|
}
|
|
|
|
const char *ApiSpecificConfig::getRegistryPath() {
|
|
return oclRegPath;
|
|
}
|
|
|
|
void ApiSpecificConfig::initPrefixes() {
|
|
validClPrefixes = {"NEO_OCL_", "NEO_", ""};
|
|
validClPrefixTypes = {DebugVarPrefix::neoOcl, DebugVarPrefix::neo, DebugVarPrefix::none};
|
|
}
|
|
|
|
const StackVec<const char *, 4> &ApiSpecificConfig::getPrefixStrings() {
|
|
return validClPrefixes;
|
|
}
|
|
|
|
const StackVec<DebugVarPrefix, 4> &ApiSpecificConfig::getPrefixTypes() {
|
|
return validClPrefixTypes;
|
|
}
|
|
|
|
std::string ApiSpecificConfig::compilerCacheFileExtension() {
|
|
return ".cl_cache";
|
|
}
|
|
|
|
int64_t ApiSpecificConfig::compilerCacheDefaultEnabled() {
|
|
return 1l;
|
|
}
|
|
|
|
bool ApiSpecificConfig::isGlobalStatelessEnabled(const RootDeviceEnvironment &rootDeviceEnvironment) {
|
|
return false;
|
|
}
|
|
|
|
} // namespace NEO
|