Home
last modified time | relevance | path

Searched refs:handle_or (Results 1 – 15 of 15) sorted by relevance

/external/tensorflow/tensorflow/compiler/tf2tensorrt/utils/
Dpy_utils.cc36 auto handle_or = se::internal::DsoLoader::TryDlopenTensorRTLibraries(); in IsGoogleTensorRTEnabled()
37 if (!handle_or.ok()) { in IsGoogleTensorRTEnabled()
43 return handle_or.ok(); in IsGoogleTensorRTEnabled()
/external/tensorflow/tensorflow/compiler/xla/stream_executor/cuda/
Dcurand_stub.cc28 auto handle_or = stream_executor::internal::DsoLoader::GetCurandDsoHandle(); in GetDsoHandle()
29 if (!handle_or.ok()) return nullptr; in GetDsoHandle()
30 return handle_or.ValueOrDie(); in GetDsoHandle()
Dcupti_stub.cc31 auto handle_or = stream_executor::internal::DsoLoader::GetCuptiDsoHandle(); in GetDsoHandle()
32 if (!handle_or.ok()) return nullptr; in GetDsoHandle()
33 return handle_or.ValueOrDie(); in GetDsoHandle()
Dcufft_stub.cc29 auto handle_or = stream_executor::internal::DsoLoader::GetCufftDsoHandle(); in GetDsoHandle()
30 if (!handle_or.ok()) return nullptr; in GetDsoHandle()
31 return handle_or.ValueOrDie(); in GetDsoHandle()
DcublasLt_stub.cc29 auto handle_or = in GetDsoHandle()
31 if (!handle_or.ok()) return nullptr; in GetDsoHandle()
32 return handle_or.ValueOrDie(); in GetDsoHandle()
Dcusparse_stub.cc29 auto handle_or = in GetDsoHandle()
31 if (!handle_or.ok()) return nullptr; in GetDsoHandle()
32 return handle_or.ValueOrDie(); in GetDsoHandle()
Dcusolver_stub.cc30 auto handle_or = in GetDsoHandle()
32 if (!handle_or.ok()) return nullptr; in GetDsoHandle()
33 return handle_or.ValueOrDie(); in GetDsoHandle()
Dcublas_stub.cc34 auto handle_or = stream_executor::internal::DsoLoader::GetCublasDsoHandle(); in GetDsoHandle()
35 if (!handle_or.ok()) return nullptr; in GetDsoHandle()
36 return handle_or.ValueOrDie(); in GetDsoHandle()
Dcudnn_stub.cc28 auto handle_or = stream_executor::internal::DsoLoader::GetCudnnDsoHandle(); in GetDsoHandle()
29 if (!handle_or.ok()) return nullptr; in GetDsoHandle()
30 return handle_or.ValueOrDie(); in GetDsoHandle()
Dcuda_stub.cc28 auto handle_or = in GetDsoHandle()
30 if (!handle_or.ok()) return nullptr; in GetDsoHandle()
31 return handle_or.ValueOrDie(); in GetDsoHandle()
Dcudart_stub.cc26 auto handle_or = in GetDsoHandle() local
28 if (!handle_or.ok()) { in GetDsoHandle()
33 return handle_or.ValueOrDie(); in GetDsoHandle()
/external/tensorflow/tensorflow/compiler/tf2tensorrt/stub/
Dnvinfer_stub.cc28 auto handle_or = in GetDsoHandle()
30 if (!handle_or.ok()) return nullptr; in GetDsoHandle()
31 return handle_or.ValueOrDie(); in GetDsoHandle()
Dnvinfer_plugin_stub.cc28 auto handle_or = in GetDsoHandle()
30 if (!handle_or.ok()) return nullptr; in GetDsoHandle()
31 return handle_or.ValueOrDie(); in GetDsoHandle()
/external/tensorflow/tensorflow/compiler/xla/stream_executor/platform/default/
Ddso_loader.cc76 auto handle_or = GetDsoHandle("cuda", ""); in GetCudaDriverDsoHandle()
77 if (handle_or.ok()) { in GetCudaDriverDsoHandle()
78 return handle_or; in GetCudaDriverDsoHandle()
/external/tensorflow/tensorflow/core/common_runtime/gpu/
Dgpu_device.cc1932 auto handle_or = se::internal::DsoLoader::MaybeTryDlopenGPULibraries(); in GetValidDeviceIds() local
1933 if (!handle_or.ok()) { in GetValidDeviceIds()