2021-10-09 01:54:03 +08:00
|
|
|
/*
|
2023-01-04 17:45:07 +08:00
|
|
|
* Copyright (C) 2021-2023 Intel Corporation
|
2021-10-09 01:54:03 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2021-10-12 22:14:38 +08:00
|
|
|
#include "shared/source/built_ins/built_ins.h"
|
2021-10-09 01:54:03 +08:00
|
|
|
#include "shared/source/command_container/implicit_scaling.h"
|
2021-10-12 22:14:38 +08:00
|
|
|
#include "shared/source/compiler_interface/default_cache_config.h"
|
2021-10-09 01:54:03 +08:00
|
|
|
#include "shared/source/memory_manager/compression_selector.h"
|
|
|
|
#include "shared/source/page_fault_manager/cpu_page_fault_manager.h"
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
namespace ImplicitScaling {
|
|
|
|
bool apiSupport = false;
|
|
|
|
} // namespace ImplicitScaling
|
2023-01-04 17:45:07 +08:00
|
|
|
bool CompressionSelector::preferCompressedAllocation(const AllocationProperties &properties) {
|
2021-10-09 01:54:03 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
void PageFaultManager::transferToCpu(void *ptr, size_t size, void *cmdQ) {
|
|
|
|
}
|
|
|
|
void PageFaultManager::transferToGpu(void *ptr, void *cmdQ) {
|
|
|
|
}
|
2021-10-12 22:14:38 +08:00
|
|
|
CompilerCacheConfig getDefaultCompilerCacheConfig() { return {}; }
|
|
|
|
const char *getAdditionalBuiltinAsString(EBuiltInOps::Type builtin) { return nullptr; }
|
2021-10-09 01:54:03 +08:00
|
|
|
} // namespace NEO
|