2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2021-05-16 20:51:16 +02:00
|
|
|
* Copyright (C) 2019-2021 Intel Corporation
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/os_interface/os_library.h"
|
2019-02-27 11:39:32 +01:00
|
|
|
|
2018-06-18 23:51:12 +02:00
|
|
|
#include "igc.opencl.h"
|
2017-12-21 00:45:38 +01:00
|
|
|
|
|
|
|
|
namespace Os {
|
|
|
|
|
// Compiler library names
|
2018-03-27 12:19:12 +02:00
|
|
|
const char *frontEndDllName = FCL_LIBRARY_NAME;
|
|
|
|
|
const char *igcDllName = IGC_LIBRARY_NAME;
|
2018-03-28 18:30:37 +02:00
|
|
|
const char *libvaDllName = "libva.so.2";
|
2021-05-30 16:42:47 +00:00
|
|
|
const char *gdiDllName = "/usr/lib/wsl/lib/libdxcore.so";
|
|
|
|
|
const char *dxcoreDllName = "/usr/lib/wsl/lib/libdxcore.so";
|
2018-03-27 12:19:12 +02:00
|
|
|
|
2021-10-19 00:38:01 -07:00
|
|
|
const char *sysFsPciPathPrefix = "/sys/bus/pci/devices/";
|
2020-04-08 11:27:04 +02:00
|
|
|
const char *pciDevicesDirectory = "/dev/dri/by-path";
|
2020-07-02 15:28:03 +02:00
|
|
|
const char *sysFsProcPathPrefix = "/proc";
|
2019-05-20 11:19:27 +02:00
|
|
|
|
2020-04-15 16:51:26 +02:00
|
|
|
// Metrics Library name
|
2021-03-17 10:03:24 +00:00
|
|
|
const char *metricsLibraryDllName = "libigdml.so.1";
|
2018-06-12 21:54:39 +02:00
|
|
|
} // namespace Os
|