mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-29 17:13:29 +08:00
- OsLibrary class - sku_info directory - gmm_lib.h header Change-Id: Ia86280e61cd2913c546afc40c3751b42e04ab137 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
32 lines
808 B
C++
32 lines
808 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/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 *gmmDllName = GMM_UMD_DLL;
|
|
const char *gmmInitFuncName = GMM_INIT_NAME;
|
|
const char *gmmDestroyFuncName = GMM_DESTROY_NAME;
|
|
|
|
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
|