HomeSort by relevance Sort by last modified time
    Searched refs:Env (Results 1 - 25 of 558) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/core/common_runtime/
single_threaded_cpu_device.h 22 class Env;
29 Device* NewSingleThreadedCpuDevice(Env* env);
session_options.cc 18 #include "tensorflow/core/platform/env.h"
22 SessionOptions::SessionOptions() : env(Env::Default()) {}
  /external/tensorflow/tensorflow/core/public/
session_options.h 25 class Env;
30 Env* env; member in struct:tensorflow::SessionOptions
  /external/tensorflow/tensorflow/core/platform/
file_system_helper.h 27 class Env;
40 // env: may not be null and will be used to check if a match has been found.
45 Status GetMatchingPaths(FileSystem* fs, Env* env, const string& pattern,
fake_python_env_test.cc 25 #include "tensorflow/core/platform/env.h"
51 Env* env = Env::Default(); local
54 string path = env->GetExecutablePath();
  /external/tensorflow/tensorflow/stream_executor/lib/
env.h 20 #include "tensorflow/core/platform/env.h"
27 using tensorflow::Env;
31 return Env::Default()->FileExists(filename);
35 return Env::Default()->FileExists(string(filename));
  /external/tensorflow/tensorflow/java/src/gen/cc/
op_generator.h 25 #include "tensorflow/core/platform/env.h"
40 Env* env = Env::Default())
41 : api_dirs_(api_dirs), env_(env) {}
52 Env* env_;
  /external/tensorflow/tensorflow/core/distributed_runtime/
remote_device.h 26 class Env;
43 void NewRemoteDevices(Env* env, WorkerCacheInterface* worker_cache,
worker_env.h 31 class Env;
40 Env* env = nullptr; member in struct:tensorflow::WorkerEnv
  /external/tensorflow/tensorflow/core/ops/compat/
backwards_compatibility_test.cc 19 #include "tensorflow/core/platform/env.h"
32 Env* env = Env::Default(); local
36 compatibility.ValidateCompatible(env, &changed_ops, &added_ops, nullptr));
  /external/tensorflow/tensorflow/core/util/proto/
descriptors.h 25 class Env;
36 tensorflow::Env* env, string const& descriptor_source,
  /external/turbine/java/com/google/turbine/binder/env/
CompoundEnv.java 17 package com.google.turbine.binder.env;
24 /** An {@link Env} that chains two existing envs together. */
25 public class CompoundEnv<S extends Symbol, V> implements Env<S, V> {
27 private final Env<S, ? extends V> base;
28 private final Env<S, ? extends V> env; field in class:CompoundEnv
30 private CompoundEnv(@Nullable Env<S, ? extends V> base, Env<S, ? extends V> env) {
32 this.env = requireNonNull(env)
    [all...]
  /external/turbine/java/com/google/turbine/binder/
ClassPath.java 21 import com.google.turbine.binder.env.Env;
32 Env<ClassSymbol, BytecodeBoundClass> env(); method in interface:ClassPath
35 Env<ModuleSymbol, ModuleInfo> moduleEnv();
  /external/tensorflow/tensorflow/core/kernels/
lookup_table_init_op.h 27 int32 value_index, Env* env,
  /external/tensorflow/tensorflow/core/summary/
summary_db_writer.h 21 #include "tensorflow/core/platform/env.h"
38 Env* env, SummaryWriterInterface** result);
summary_file_writer.h 20 #include "tensorflow/core/platform/env.h"
34 /// returned status is ok. The Env object must not be destroyed until
38 const string& filename_suffix, Env* env,
  /external/tensorflow/tensorflow/core/grappler/inputs/
utils.cc 20 #include "tensorflow/core/platform/env.h"
26 return Env::Default()->FilesExist(files, status);
34 *status = Env::Default()->FileExists(file);
40 if (!ReadBinaryProto(Env::Default(), graph_def_path, result).ok()) {
41 return ReadTextProto(Env::Default(), graph_def_path, result);
49 if (!ReadBinaryProto(Env::Default(), graph_def_path, result).ok()) {
50 return ReadTextProto(Env::Default(), graph_def_path, result);
  /external/llvm/lib/DebugInfo/PDB/
PDBSymbolCompiland.cpp 36 while (auto Env = Envs->getNext()) {
37 std::string Var = Env->getName();
40 std::string Value = Env->getValue();
  /external/tensorflow/tensorflow/contrib/gdr/
gdr_server_lib.h 26 GdrServer(const ServerDef& server_def, Env* env);
29 static Status Create(const ServerDef& server_def, Env* env,
  /external/tensorflow/tensorflow/contrib/mpi/
mpi_server_lib.h 30 MPIServer(const ServerDef& server_def, Env* env);
33 static Status Create(const ServerDef& server_def, Env* env,
  /external/tensorflow/tensorflow/core/profiler/lib/
traceme.cc 35 /*start_time=*/Env::Default()->NowNanos(),
42 /*end_time=*/Env::Default()->NowNanos()});
  /external/tensorflow/tensorflow/tools/graph_transforms/
file_utils.cc 18 #include "tensorflow/core/platform/env.h"
26 ReadFileToString(Env::Default(), file_name, &file_data);
32 Status load_status = ReadBinaryProto(Env::Default(), file_name, graph_def);
  /external/tensorflow/tensorflow/cc/saved_model/
reader.cc 24 #include "tensorflow/core/platform/env.h"
35 if (Env::Default()->FileExists(saved_model_pb_path).ok()) {
36 return ReadBinaryProto(Env::Default(), saved_model_pb_path,
41 if (Env::Default()->FileExists(saved_model_pbtxt_path).ok()) {
42 return ReadTextProto(Env::Default(), saved_model_pbtxt_path,
  /external/tensorflow/tensorflow/core/platform/cloud/
now_seconds_env.h 19 #include "tensorflow/core/platform/env.h"
25 /// This Env wrapper lets us control the NowSeconds() return value.
28 NowSecondsEnv() : EnvWrapper(Env::Default()) {}
45 /// The NowSeconds() value that this Env will return.
  /external/tensorflow/tensorflow/core/profiler/internal/
tfprof_timeline_test.cc 24 #include "tensorflow/core/platform/env.h"
43 ReadProtoFile(Env::Default(), graph_path, graph_pb.get(), false));
51 ReadProtoFile(Env::Default(), run_meta_path, run_meta_pb.get(), true));
73 TF_CHECK_OK(ReadFileToString(Env::Default(), dump_file + "_0", &dump_str));
87 TF_CHECK_OK(ReadFileToString(Env::Default(), dump_file + "_0", &dump_str));

Completed in 860 milliseconds

1 2 3 4 5 6 7 8 91011>>