HomeSort by relevance Sort by last modified time
    Searched defs:SessionOptions (Results 1 - 3 of 3) sorted by null

  /external/tensorflow/tensorflow/core/common_runtime/
session_options.cc 22 SessionOptions::SessionOptions() : env(Env::Default()) {}
  /external/tensorflow/tensorflow/core/public/
session_options.h 28 struct SessionOptions {
60 SessionOptions();
  /external/tensorflow/tensorflow/go/
session.go 51 func NewSession(graph *Graph, options *SessionOptions) (*Session, error) {
275 // SessionOptions contains configuration information for a session.
276 type SessionOptions struct {
308 // c converts the SessionOptions to the C API's TF_SessionOptions. Callers must
310 func (o *SessionOptions) c() (ret *C.TF_SessionOptions, done func(), err error) {
330 return nil, func() {}, fmt.Errorf("invalid SessionOptions.Config: %v", err)

Completed in 121 milliseconds