Home
last modified time | relevance | path

Searched refs:CheckpointReader (Results 1 – 16 of 16) sorted by relevance

/external/tensorflow/tensorflow/python/training/
Dpy_checkpoint_reader.py23 from tensorflow.python.util._pywrap_checkpoint_reader import CheckpointReader
57 CheckpointReader.get_variable_to_dtype_map = get_variable_to_dtype_map
63 CheckpointReader.has_tensor = has_tensor
69 return CheckpointReader.CheckpointReader_GetTensor(
77 CheckpointReader.get_tensor = get_tensor
95 return CheckpointReader(compat.as_bytes(filepattern))
/external/tensorflow/tensorflow/python/util/
Dpy_checkpoint_reader_wrapper.cc103 tensorflow::checkpoint::CheckpointReader* reader, const string& name) { in CheckpointReader_GetTensor()
124 py::class_<tensorflow::checkpoint::CheckpointReader> checkpoint_reader_class( in PYBIND11_MODULE()
134 std::make_unique<tensorflow::checkpoint::CheckpointReader>( in PYBIND11_MODULE()
140 [](tensorflow::checkpoint::CheckpointReader& self) { in PYBIND11_MODULE()
144 &tensorflow::checkpoint::CheckpointReader::GetVariableToShapeMap) in PYBIND11_MODULE()
146 &tensorflow::checkpoint::CheckpointReader::GetVariableToDataTypeMap) in PYBIND11_MODULE()
147 .def("_HasTensor", &tensorflow::checkpoint::CheckpointReader::HasTensor) in PYBIND11_MODULE()
/external/tensorflow/tensorflow/c/
Dcheckpoint_reader.cc32 CheckpointReader::CheckpointReader(const string& filename, TF_Status* status) in CheckpointReader() function in tensorflow::checkpoint::CheckpointReader
64 bool CheckpointReader::HasTensor(const string& name) const { in HasTensor()
72 CheckpointReader::GetVariableToShapeMap() const { in GetVariableToShapeMap()
78 CheckpointReader::GetVariableToDataTypeMap() const { in GetVariableToDataTypeMap()
83 const string CheckpointReader::DebugString() const { in DebugString()
88 void CheckpointReader::GetTensor( in GetTensor()
111 CheckpointReader::BuildV2VarMaps() { in BuildV2VarMaps()
Dcheckpoint_reader.h40 class CheckpointReader {
42 CheckpointReader(const string& filename, TF_Status* status);
76 TF_DISALLOW_COPY_AND_ASSIGN(CheckpointReader);
Dc_api_experimental.cc336 struct TF_CheckpointReader : public tensorflow::checkpoint::CheckpointReader {
337 using tensorflow::checkpoint::CheckpointReader::CheckpointReader;
/external/tensorflow/tensorflow/core/profiler/internal/
Dtfprof_stats.h56 std::unique_ptr<checkpoint::CheckpointReader> ckpt_reader);
59 std::unique_ptr<checkpoint::CheckpointReader> ckpt_reader);
111 std::unique_ptr<checkpoint::CheckpointReader> ckpt_reader_;
Dtfprof_tensor_test.cc46 std::unique_ptr<checkpoint::CheckpointReader> ckpt_reader( in TFProfTensorTest()
47 new checkpoint::CheckpointReader(ckpt_path, status)); in TFProfTensorTest()
Dtfprof_show_test.cc68 std::unique_ptr<checkpoint::CheckpointReader> ckpt_reader( in TFProfShowTest()
69 new checkpoint::CheckpointReader(ckpt_path, status)); in TFProfShowTest()
Dtfprof_show.h41 explicit TFShow(checkpoint::CheckpointReader* ckpt_reader) in TFShow()
120 checkpoint::CheckpointReader* ckpt_reader_;
Dtfprof_stats_test.cc62 std::unique_ptr<checkpoint::CheckpointReader> ckpt_reader( in TFProfStatsTest()
63 new checkpoint::CheckpointReader(ckpt_path, status)); in TFProfStatsTest()
Dtfprof_scope.h42 explicit TFScope(checkpoint::CheckpointReader* ckpt_reader) in TFScope()
Dtfprof_graph.h45 explicit TFGraph(checkpoint::CheckpointReader* ckpt_reader) in TFGraph()
Dtfprof_stats.cc55 std::unique_ptr<checkpoint::CheckpointReader> ckpt_reader) in TFStats()
78 std::unique_ptr<checkpoint::CheckpointReader> ckpt_reader) in TFStats()
Dprint_model_analysis.cc200 std::unique_ptr<checkpoint::CheckpointReader> ckpt_reader; in PrintModelAnalysis()
/external/tensorflow/tensorflow/tools/def_file_filter/
Dsymbols_pybind.txt120 tensorflow::checkpoint::CheckpointReader
121 tensorflow::checkpoint::CheckpointReader::Init
122 tensorflow::checkpoint::CheckpointReader::DebugString
123 tensorflow::checkpoint::CheckpointReader::GetVariableToShapeMap
124 tensorflow::checkpoint::CheckpointReader::GetVariableToDataTypeMap
125 tensorflow::checkpoint::CheckpointReader::GetTensor
126 tensorflow::checkpoint::CheckpointReader::HasTensor
/external/tensorflow/tensorflow/core/profiler/
Dprofiler.cc189 std::unique_ptr<checkpoint::CheckpointReader> ckpt_reader; in Run()
193 new checkpoint::CheckpointReader(FLAGS_checkpoint_path, status)); in Run()