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