mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-25 21:42:53 +08:00
Change-Id: I67a6919bbbff1d30c7d6cdb257b41c87bad51e7f Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
29 lines
683 B
C++
29 lines
683 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/os_interface/os_library.h"
|
|
|
|
#include "External/Common/GmmLibDllName.h"
|
|
#include "igc.opencl.h"
|
|
|
|
namespace Os {
|
|
// Compiler library names
|
|
const char *frontEndDllName = FCL_LIBRARY_NAME;
|
|
const char *igcDllName = IGC_LIBRARY_NAME;
|
|
const char *libvaDllName = "libva.so.2";
|
|
|
|
const char *sysFsPciPath = "/sys/bus/pci/devices/";
|
|
const char *tbxLibName = "libtbxAccess.so";
|
|
|
|
// Os specific Metrics Library name
|
|
#if __x86_64__ || __ppc64__
|
|
const char *metricsLibraryDllName = "libigdml64.so";
|
|
#else
|
|
const char *metricsLibraryDllName = "libigdml32.so";
|
|
#endif
|
|
} // namespace Os
|