Home
last modified time | relevance | path

Searched refs:library_path (Results 1 – 25 of 31) sorted by relevance

12

/external/tensorflow/third_party/gpus/
Dfind_cuda_config.py336 library_path = _find_library(base_paths, "cublas", cublas_version)
341 "cublas_library_dir": os.path.dirname(library_path),
366 library_path = _find_library(base_paths, "cusolver", cusolver_version)
371 "cusolver_library_dir": os.path.dirname(library_path),
396 library_path = _find_library(base_paths, "curand", curand_version)
401 "curand_library_dir": os.path.dirname(library_path),
425 library_path = _find_library(base_paths, "cufft", cufft_version)
430 "cufft_library_dir": os.path.dirname(library_path),
448 library_path = _find_library(base_paths, "cudnn", cudnn_version)
453 "cudnn_library_dir": os.path.dirname(library_path),
[all …]
/external/antlr/runtime/Ruby/lib/
Dantlr3.rb116 def self.library_path( *args ) singletonMethod
196 $LOAD_PATH.include?( library_path ) or $LOAD_PATH.unshift( library_path )
/external/libchrome/mojo/public/c/system/
Dthunks.cc68 base::Optional<base::FilePath> library_path; in CoreLibraryInitializer() local
73 library_path.emplace(base::FilePath::FromUTF8Unsafe(utf8_path)); in CoreLibraryInitializer()
80 library_path = base::FilePath::FromUTF8Unsafe(library_path_value); in CoreLibraryInitializer()
83 if (!library_path) { in CoreLibraryInitializer()
92 library_path.emplace(kDefaultLibraryPathValue); in CoreLibraryInitializer()
96 library_.emplace(*library_path); in CoreLibraryInitializer()
105 << "find it at " << library_path->value(); in CoreLibraryInitializer()
115 << library_path->value(); in CoreLibraryInitializer()
125 << "Invalid mojo_core library: " << library_path->value(); in CoreLibraryInitializer()
/external/pigweed/pw_build/
Dcopy_from_cipd.gni34 # library_path = "libsomething/libsomething.a"
48 # library_path: (required) The path of the static library of interest,
59 _out_file = "$_out_dir/${invoker.library_path}"
66 "--file=${invoker.library_path}",
85 "library_path",
/external/libchrome/base/
Dnative_library.cc9 NativeLibrary LoadNativeLibrary(const FilePath& library_path, in LoadNativeLibrary() argument
12 library_path, NativeLibraryOptions(), error); in LoadNativeLibrary()
Dscoped_native_library.cc15 ScopedNativeLibrary::ScopedNativeLibrary(const FilePath& library_path) { in ScopedNativeLibrary() argument
16 library_ = base::LoadNativeLibrary(library_path, nullptr); in ScopedNativeLibrary()
Dnative_library_posix.cc21 NativeLibrary LoadNativeLibraryWithOptions(const FilePath& library_path, in LoadNativeLibraryWithOptions() argument
41 void* dl = dlopen(library_path.value().c_str(), flags); in LoadNativeLibraryWithOptions()
Dnative_library.h83 BASE_EXPORT NativeLibrary LoadNativeLibrary(const FilePath& library_path,
90 const FilePath& library_path,
Dscoped_native_library.h28 explicit ScopedNativeLibrary(const FilePath& library_path);
/external/swiftshader/src/Vulkan/
DBUILD.gn216 library_path = ".\\vk_swiftshader.dll"
218 library_path = "./libvk_swiftshader.dylib"
220 library_path = "./libvk_swiftshader.so"
229 "--library_path",
230 library_path,
Dvk_swiftshader_icd.json.tmpl4 "library_path": "${ICD_LIBRARY_PATH}",
Dwrite_icd_json.py29 data['ICD']['library_path'] = args.library_path
/external/libchrome/base/android/
Dpath_utils.cc67 FilePath library_path(ConvertJavaStringToUTF8(path)); in GetNativeLibraryDirectory() local
68 *result = library_path; in GetNativeLibraryDirectory()
/external/tensorflow/tensorflow/stream_executor/rocm/
Drocm_diagnostics.cc122 string library_path = value == nullptr ? "" : value; in LogDriverVersionInformation() local
123 VLOG(1) << "LD_LIBRARY_PATH is: \"" << library_path << "\""; in LogDriverVersionInformation()
125 std::vector<string> pieces = absl::StrSplit(library_path, ':'); in LogDriverVersionInformation()
/external/pigweed/pw_arduino_build/py/pw_arduino_build/
Dbuilder.py78 library_path=None, argument
93 self.library_path = library_path
137 if not library_path:
138 self.library_path = []
142 self.library_path.append(Path(self.package_path) / "libraries")
143 if library_path:
144 self.library_path = [
146 os.path.expandvars(l_path))) for l_path in library_path
981 if not self.library_names or not self.library_path:
989 for library_dir in self.library_path:
/external/libusb/libusb/os/
Dwindows_common.c105 char library_path[MAX_PATH]; in load_system_library() local
109 length = GetSystemDirectoryA(library_path, sizeof(library_path)); in load_system_library()
110 if ((length == 0) || (length >= (UINT)sizeof(library_path))) { in load_system_library()
115 filename_start = library_path + length; in load_system_library()
118 if (length >= (UINT)sizeof(library_path)) { in load_system_library()
124 return LoadLibraryA(library_path); in load_system_library()
/external/vulkan-validation-layers/layers/json/
DVkLayer_unique_objects.json.in6 "library_path": "@RELATIVE_LAYER_BINARY@", string
DVkLayer_thread_safety.json.in6 "library_path": "@RELATIVE_LAYER_BINARY@", string
DVkLayer_stateless_validation.json.in6 "library_path": "@RELATIVE_LAYER_BINARY@", string
DVkLayer_object_lifetimes.json.in6 "library_path": "@RELATIVE_LAYER_BINARY@", string
DVkLayer_core_validation.json.in6 "library_path": "@RELATIVE_LAYER_BINARY@", string
DVkLayer_khronos_validation.json.in6 "library_path": "@RELATIVE_LAYER_BINARY@", string
/external/tensorflow/tensorflow/stream_executor/cuda/
Dcuda_diagnostics.cc180 std::string library_path = value == nullptr ? "" : value; in LogDriverVersionInformation() local
181 VLOG(1) << "LD_LIBRARY_PATH is: \"" << library_path << "\""; in LogDriverVersionInformation()
183 std::vector<std::string> pieces = absl::StrSplit(library_path, ':'); in LogDriverVersionInformation()
/external/antlr/runtime/Ruby/test/functional/main/
Dmain-scripts.rb8 ENV[ 'RUBYLIB' ] = ANTLR3.library_path
/external/swiftshader/tests/VulkanWrapper/
DVulkanTester.cpp136 …fout << R"raw({ "file_format_version": "1.0.0", "ICD": { "library_path": ")raw" << driverPath << R… in ScopedSetIcdFilenames()

12