mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 21:18:24 +08:00
Cleanup includes 19
Cleaned up files: opencl/source/api/cl_types.h shared/source/compiler_interface/external_functions.h shared/source/compiler_interface/linker.h shared/source/device_binary_format/elf/elf.h shared/source/helpers/preamble.h shared/source/memory_manager/definitions/storage_info.h shared/source/memory_manager/memory_manager.h shared/source/memory_manager/os_agnostic_memory_manager.h shared/source/program/program_info.h Related-To: NEO-5548 Signed-off-by: Warchulski, Jaroslaw <jaroslaw.warchulski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
0770ea765f
commit
0eac749fcc
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2018-2022 Intel Corporation
|
||||
* Copyright (C) 2018-2023 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -667,7 +667,7 @@ TEST(DrmMemoryManagerCreate, whenCallCreateMemoryManagerThenDrmMemoryManagerIsCr
|
||||
executionEnvironment.rootDeviceEnvironments[0]->osInterface = std::make_unique<OSInterface>();
|
||||
executionEnvironment.rootDeviceEnvironments[0]->osInterface->setDriverModel(std::unique_ptr<DriverModel>(drm));
|
||||
|
||||
auto drmMemoryManager = MemoryManager::createMemoryManager(executionEnvironment);
|
||||
auto drmMemoryManager = MemoryManager::createMemoryManager(executionEnvironment, DriverModelType::UNKNOWN);
|
||||
EXPECT_NE(nullptr, drmMemoryManager.get());
|
||||
executionEnvironment.memoryManager = std::move(drmMemoryManager);
|
||||
}
|
||||
@@ -688,7 +688,7 @@ TEST(DrmMemoryManagerCreate, givenEnableHostPtrValidationSetToZeroWhenCreateDrmM
|
||||
executionEnvironment.rootDeviceEnvironments[0]->osInterface = std::make_unique<OSInterface>();
|
||||
executionEnvironment.rootDeviceEnvironments[0]->osInterface->setDriverModel(std::unique_ptr<DriverModel>(drm));
|
||||
|
||||
auto drmMemoryManager = MemoryManager::createMemoryManager(executionEnvironment);
|
||||
auto drmMemoryManager = MemoryManager::createMemoryManager(executionEnvironment, DriverModelType::UNKNOWN);
|
||||
EXPECT_NE(nullptr, drmMemoryManager.get());
|
||||
EXPECT_FALSE(static_cast<DrmMemoryManager *>(drmMemoryManager.get())->isValidateHostMemoryEnabled());
|
||||
executionEnvironment.memoryManager = std::move(drmMemoryManager);
|
||||
|
||||
Reference in New Issue
Block a user