Home
last modified time | relevance | path

Searched refs:EventsWriter (Results 1 – 9 of 9) sorted by relevance

/external/tensorflow/tensorflow/python/client/
Devents_writer.i24 %nodefaultctor EventsWriter;
31 %unignore tensorflow::EventsWriter;
32 %unignore tensorflow::EventsWriter::EventsWriter;
33 %unignore tensorflow::EventsWriter::~EventsWriter;
34 %unignore tensorflow::EventsWriter::InitWithSuffix;
35 %unignore tensorflow::EventsWriter::FileName;
36 %rename("_WriteSerializedEvent") tensorflow::EventsWriter::WriteSerializedEvent;
37 %unignore tensorflow::EventsWriter::Flush;
38 %unignore tensorflow::EventsWriter::Close;
42 %newobject tensorflow::EventsWriter::EventsWriter;
[all …]
Devents_writer_test.py37 writer = pywrap_tensorflow.EventsWriter(compat.as_bytes(file_prefix))
77 pywrap_tensorflow.EventsWriter(b"foo").WriteEvent(_Invalid())
/external/tensorflow/tensorflow/core/util/
Devents_writer.cc33 EventsWriter::EventsWriter(const string& file_prefix) in EventsWriter() function in tensorflow::EventsWriter
39 EventsWriter::~EventsWriter() { in ~EventsWriter()
43 Status EventsWriter::Init() { return InitWithSuffix(""); } in Init()
45 Status EventsWriter::InitWithSuffix(const string& suffix) { in InitWithSuffix()
50 Status EventsWriter::InitIfNeeded() { in InitIfNeeded()
98 string EventsWriter::FileName() { in FileName()
105 void EventsWriter::WriteSerializedEvent(StringPiece event_str) { in WriteSerializedEvent()
118 void EventsWriter::WriteEvent(const Event& event) { in WriteEvent()
124 Status EventsWriter::Flush() { in Flush()
151 Status EventsWriter::Close() { in Close()
[all …]
Devents_writer_test.cc38 void WriteSimpleValue(EventsWriter* writer, double wall_time, int64 step, in WriteSimpleValue()
49 void WriteFile(EventsWriter* writer) { in WriteFile()
81 strings::StrCat(EventsWriter::kVersionPrefix, in VerifyFile()
82 EventsWriter::kCurrentVersion)); in VerifyFile()
113 EventsWriter writer(file_prefix); in TEST()
122 EventsWriter writer(file_prefix); in TEST()
131 EventsWriter* writer = new EventsWriter(file_prefix); in TEST()
140 EventsWriter writer(file_prefix); in TEST()
152 EventsWriter writer(file_prefix); in TEST()
164 EventsWriter writer(file_prefix); in TEST()
[all …]
Devents_writer.h31 class EventsWriter {
47 explicit EventsWriter(const string& file_prefix);
48 ~EventsWriter();
93 TF_DISALLOW_COPY_AND_ASSIGN(EventsWriter);
/external/tensorflow/tensorflow/core/summary/
Dsummary_file_writer.cc49 tensorflow::MakeUnique<EventsWriter>(io::JoinPath(logdir, "events")); in Initialize()
177 std::unique_ptr<EventsWriter> events_writer_ GUARDED_BY(mu_);
/external/tensorflow/tensorflow/python/eager/
Dprofiler.py128 event_writer = pywrap_tensorflow.EventsWriter(
/external/tensorflow/tensorflow/python/summary/writer/
Devent_file_writer.py69 self._ev_writer = pywrap_tensorflow.EventsWriter(
/external/tensorflow/tensorflow/core/profiler/rpc/client/
Dcapture_profile.cc179 EventsWriter event_writer(io::JoinPath(logdir, "events")); in MaybeCreateEmptyEventFile()