Home
last modified time | relevance | path

Searched refs:SessionRef (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/python/client/
Dsession_ref.cc382 SessionRef::SessionRef(Session* session) : session_(session) { in SessionRef() function in tensorflow::SessionRef
391 SessionRef::~SessionRef() = default;
393 Status SessionRef::CheckNotClosed() { in CheckNotClosed()
409 Status SessionRef::Run(const RunOptions& run_options, in Run()
419 Status SessionRef::Run(const std::vector<std::pair<string, Tensor> >& inputs, in Run()
427 Status SessionRef::Create(const GraphDef& graph) { in Create()
431 Status SessionRef::Create(const RunOptions& run_options, in Create()
436 Status SessionRef::Extend(const RunOptions& run_options, in Extend()
441 Status SessionRef::Extend(const GraphDef& graph) { in Extend()
445 Status SessionRef::ListDevices(std::vector<DeviceAttributes>* response) { in ListDevices()
[all …]
Dsession_ref.h32 class SessionRef : public Session {
34 explicit SessionRef(Session* session);
35 ~SessionRef() override;
Dtf_session_helper.cc54 SessionRef* session_ref = new SessionRef(session); in TF_NewSessionRef()