Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/stream_executor/cuda/
Dcufft_stub.cc28 auto handle_or = stream_executor::internal::DsoLoader::GetCufftDsoHandle(); in GetDsoHandle()
29 if (!handle_or.ok()) return nullptr; in GetDsoHandle()
30 return handle_or.ValueOrDie(); in GetDsoHandle()
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()
Dcublas_stub.cc30 auto handle_or = stream_executor::internal::DsoLoader::GetCublasDsoHandle(); in GetDsoHandle()
31 if (!handle_or.ok()) return nullptr; in GetDsoHandle()
32 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()) return nullptr; in GetDsoHandle()
29 return handle_or.ValueOrDie(); in GetDsoHandle()
/external/tensorflow/tensorflow/core/platform/default/gpu/
Dcupti_wrapper.cc38 auto handle_or = \
40 if (!handle_or.ok()) return nullptr; \
43 ->GetSymbolFromLibrary(handle_or.ValueOrDie(), kName, &symbol) \
/external/tensorflow/tensorflow/stream_executor/platform/default/
Ddso_loader.cc65 auto handle_or = GetDsoHandle("cuda", ""); in GetCudaDriverDsoHandle()
66 if (handle_or.ok()) { in GetCudaDriverDsoHandle()
67 return handle_or; in GetCudaDriverDsoHandle()