Home | History | Annotate | Download | only in stream_executor

Lines Matching refs:port

22 #include "tensorflow/stream_executor/platform/port.h"
44 static port::Status GetCublasDsoHandle(void** dso_handle);
45 static port::Status GetCudnnDsoHandle(void** dso_handle);
46 static port::Status GetCufftDsoHandle(void** dso_handle);
47 static port::Status GetCurandDsoHandle(void** dso_handle);
48 static port::Status GetLibcudaDsoHandle(void** dso_handle);
49 static port::Status GetLibcuptiDsoHandle(void** dso_handle);
52 static void RegisterRpath(port::StringPiece path);
65 static port::Status GetDsoHandle(port::StringPiece path, void** dso_handle,
84 static string FindDsoPath(port::StringPiece library_name,
85 port::StringPiece runfiles_relpath);
100 static port::StatusOr<void*> GetCublasDsoHandle();
101 static port::StatusOr<void*> GetCudnnDsoHandle();
102 static port::StatusOr<void*> GetCufftDsoHandle();
103 static port::StatusOr<void*> GetCurandDsoHandle();
104 static port::StatusOr<void*> GetLibcudaDsoHandle();
105 static port::StatusOr<void*> GetLibcuptiDsoHandle();
110 static port::StatusOr<void*> FetchHandleResult(
111 std::function<port::Status(void**)> load_dso);