95 lines
3.7 KiB
C++
95 lines
3.7 KiB
C++
/*
|
|
* Copyright (C) 2021-2024 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/built_ins/built_ins.h"
|
|
#include "shared/source/command_container/implicit_scaling.h"
|
|
#include "shared/source/compiler_interface/default_cache_config.h"
|
|
#include "shared/source/debug_settings/debug_settings_manager.h"
|
|
#include "shared/source/execution_environment/root_device_environment.h"
|
|
#include "shared/source/helpers/api_specific_config.h"
|
|
#include "shared/source/memory_manager/compression_selector.h"
|
|
#include "shared/source/page_fault_manager/cpu_page_fault_manager.h"
|
|
#include "shared/test/common/base_ult_config_listener.h"
|
|
#include "shared/test/common/helpers/test_files.h"
|
|
#include "shared/test/common/tests_configuration.h"
|
|
|
|
#include "test_files_setup.h"
|
|
|
|
namespace NEO {
|
|
namespace ImplicitScaling {
|
|
bool apiSupport = false;
|
|
} // namespace ImplicitScaling
|
|
|
|
const char *neoMockSettingsFileName = "neo_mock.config";
|
|
|
|
bool CompressionSelector::preferCompressedAllocation(const AllocationProperties &properties) {
|
|
return false;
|
|
}
|
|
void PageFaultManager::transferToCpu(void *ptr, size_t size, void *cmdQ) {
|
|
}
|
|
void PageFaultManager::transferToGpu(void *ptr, void *cmdQ) {
|
|
}
|
|
void PageFaultManager::allowCPUMemoryEviction(void *ptr, PageFaultData &pageFaultData) {
|
|
}
|
|
const char *getAdditionalBuiltinAsString(EBuiltInOps::Type builtin) { return nullptr; }
|
|
|
|
void RootDeviceEnvironment::initApiGfxCoreHelper() {
|
|
}
|
|
|
|
} // namespace NEO
|
|
|
|
using namespace NEO;
|
|
void cleanTestHelpers() {}
|
|
|
|
void applyWorkarounds() {
|
|
const std::array<ConstStringRef, 11> builtinIntermediateNames{"copy_buffer_to_buffer.builtin_kernel.bc",
|
|
"copy_buffer_rect.builtin_kernel.bc",
|
|
"fill_buffer.builtin_kernel.bc",
|
|
"copy_buffer_to_image3d.builtin_kernel.bc",
|
|
"copy_image3d_to_buffer.builtin_kernel.bc",
|
|
"copy_image_to_image1d.builtin_kernel.bc",
|
|
"copy_image_to_image2d.builtin_kernel.bc",
|
|
"copy_image_to_image3d.builtin_kernel.bc",
|
|
"fill_image1d.builtin_kernel.bc",
|
|
"fill_image2d.builtin_kernel.bc",
|
|
"fill_image3d.builtin_kernel.bc"};
|
|
auto &storageRegistry = EmbeddedStorageRegistry::getInstance();
|
|
for (auto builtinIntermediateName : builtinIntermediateNames) {
|
|
std::string resource = "__mock_spirv_resource";
|
|
storageRegistry.store(builtinIntermediateName.str(), createBuiltinResource(resource.data(), resource.size() + 1));
|
|
}
|
|
}
|
|
|
|
bool isPlatformSupported(const HardwareInfo &hwInfoForTests) {
|
|
return true;
|
|
}
|
|
|
|
void setupTestFiles(std::string testBinaryFiles, int32_t revId) {
|
|
testBinaryFiles.append("/");
|
|
testBinaryFiles.append(binaryNameSuffix);
|
|
testBinaryFiles.append("/");
|
|
testBinaryFiles.append(std::to_string(revId));
|
|
testBinaryFiles.append("/");
|
|
testBinaryFiles.append(testFiles);
|
|
testFiles = testBinaryFiles;
|
|
|
|
std::string nClFiles = NEO_SHARED_TEST_FILES_DIR;
|
|
nClFiles.append("/");
|
|
clFiles = nClFiles;
|
|
}
|
|
|
|
std::string getBaseExecutionDir() {
|
|
if (testMode != TestMode::aubTests) {
|
|
return "shared/";
|
|
}
|
|
return "";
|
|
}
|
|
|
|
void addUltListener(::testing::TestEventListeners &listeners) {
|
|
listeners.Append(new BaseUltConfigListener);
|
|
}
|