Searched refs:EventsWriter (Results 1 – 9 of 9) sorted by relevance
24 %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 …]
37 writer = pywrap_tensorflow.EventsWriter(compat.as_bytes(file_prefix))77 pywrap_tensorflow.EventsWriter(b"foo").WriteEvent(_Invalid())
33 EventsWriter::EventsWriter(const string& file_prefix) in EventsWriter() function in tensorflow::EventsWriter39 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 …]
38 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 …]
31 class EventsWriter {47 explicit EventsWriter(const string& file_prefix);48 ~EventsWriter();93 TF_DISALLOW_COPY_AND_ASSIGN(EventsWriter);
49 tensorflow::MakeUnique<EventsWriter>(io::JoinPath(logdir, "events")); in Initialize()177 std::unique_ptr<EventsWriter> events_writer_ GUARDED_BY(mu_);
128 event_writer = pywrap_tensorflow.EventsWriter(
69 self._ev_writer = pywrap_tensorflow.EventsWriter(
179 EventsWriter event_writer(io::JoinPath(logdir, "events")); in MaybeCreateEmptyEventFile()