1 /* 2 * Copyright (C) 2018-2021 Intel Corporation 3 * 4 * SPDX-License-Identifier: MIT 5 * 6 */ 7 8 #include "shared/source/os_interface/os_library.h" 9 10 #include "common/gtsysinfo.h" 11 #include "igfxfmid.h" 12 13 namespace Os { 14 /////////////////////////////////////////////////////////////////////////////// 15 // These options determine the Linux specific behavior for 16 // the runtime unit tests 17 /////////////////////////////////////////////////////////////////////////////// 18 #if defined(__linux__) 19 const char *frontEndDllName = "_invalidFCL"; 20 const char *igcDllName = "_invalidIGC"; 21 const char *libvaDllName = nullptr; 22 const char *testDllName = "libtest_dynamic_lib.so"; 23 const char *metricsLibraryDllName = ""; 24 const char *gdiDllName = ""; 25 const char *dxcoreDllName = ""; 26 #endif 27 const char *sysFsPciPathPrefix = "./test_files/linux/devices/"; 28 const char *pciDevicesDirectory = "./test_files/linux/by-path"; 29 const char *sysFsProcPathPrefix = "./test_files/linux/proc/"; 30 } // namespace Os 31 setAdapterInfo(const PLATFORM * platform,const GT_SYSTEM_INFO * gtSystemInfo,uint64_t gpuAddressSpace)32NEO::OsLibrary *setAdapterInfo(const PLATFORM *platform, const GT_SYSTEM_INFO *gtSystemInfo, uint64_t gpuAddressSpace) { 33 return nullptr; 34 } 35