2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2018-09-18 09:11:08 +02:00
|
|
|
* Copyright (C) 2017-2018 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
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2018-07-17 12:19:34 +00:00
|
|
|
#include "External/Common/GmmLibDllName.h"
|
2018-06-18 23:51:12 +02:00
|
|
|
#include "igc.opencl.h"
|
2017-12-21 00:45:38 +01:00
|
|
|
#include "runtime/os_interface/os_library.h"
|
|
|
|
|
|
|
|
|
|
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";
|
2018-07-17 12:19:34 +00:00
|
|
|
const char *gmmDllName = GMM_UMD_DLL;
|
|
|
|
|
const char *gmmEntryName = GMM_ENTRY_NAME;
|
2018-03-27 12:19:12 +02:00
|
|
|
|
2017-12-21 00:45:38 +01:00
|
|
|
const char *sysFsPciPath = "/sys/bus/pci/devices/";
|
|
|
|
|
const char *tbxLibName = "libtbxAccess.so";
|
2018-06-12 21:54:39 +02:00
|
|
|
} // namespace Os
|