/external/tensorflow/tensorflow/core/ops/ |
debug_ops.cc | 157 Debug Numeric Summary Op. 159 Provide a basic summary of numeric value types, range and distribution.
|
/external/tensorflow/tensorflow/core/summary/ |
summary_file_writer.cc | 15 #include "tensorflow/core/summary/summary_file_writer.h" 17 #include "tensorflow/core/summary/summary_converter.h" 21 #include "tensorflow/core/framework/summary.pb.h" 75 Summary::Value* v = e->mutable_summary()->add_value();
|
/external/tensorflow/tensorflow/core/util/ |
events_writer_test.cc | 19 #include "tensorflow/core/framework/summary.pb.h" 43 Summary::Value* summ_val = event.mutable_summary()->add_value(); 89 "summary { value { tag: 'foo' simple_value: 3.14159 } }", 98 "summary { value { tag: 'bar' simple_value: -42 } }",
|
/external/openssh/contrib/redhat/ |
openssh.spec | 67 Summary: The OpenSSH implementation of SSH protocol versions 1 and 2. 108 Summary: OpenSSH clients. 114 Summary: The OpenSSH server daemon. 123 Summary: A passphrase dialog for OpenSSH and X. 129 Summary: A passphrase dialog for OpenSSH, X, and GNOME.
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
AsmWriter.cpp | 680 /// The summary index for which we are holding slot numbers. 699 /// ModulePathMap - The slot map for Module paths used in the summary index. 703 /// GUIDMap - The slot map for GUIDs used in the summary index. 724 /// Construct from a module summary index. [all...] |
/external/compiler-rt/make/ |
AppleBI.mk | 27 # Log full compile lines in B&I logs and omit summary lines. 29 Summary := @true
|
/external/syzkaller/vendor/github.com/google/go-cmp/cmp/internal/teststructs/ |
project1.go | 253 Summary *SummerLoveSummary
|
/external/tensorflow/tensorflow/python/keras/ |
callbacks_v1_test.py | 239 def add_summary(self, summary, global_step): 240 summary_obj = summary_pb2.Summary() 242 # ensure a valid Summary proto is being sent 243 if isinstance(summary, bytes): 244 summary_obj.ParseFromString(summary) 246 assert isinstance(summary, summary_pb2.Summary) 247 summary_obj = summary 404 def add_summary(self, summary, step): 405 self.summary_values.append(summary.value[0].simple_value [all...] |
/external/tensorflow/tensorflow/contrib/boosted_trees/lib/quantiles/ |
weighted_quantiles_stream_test.cc | 26 using Summary = 213 // and build an overall summary while maintaining error bounds by ensuring we 216 for (const auto &summary : worker_summaries) { 217 reducer_stream.PushSummary(summary);
|
/external/tensorflow/tensorflow/core/kernels/boosted_trees/quantiles/ |
weighted_quantiles_stream_test.cc | 25 using Summary = 212 // and build an overall summary while maintaining error bounds by ensuring we 215 for (const auto &summary : worker_summaries) { 216 reducer_stream.PushSummary(summary);
|
/external/tensorflow/tensorflow/python/ |
__init__.py | 102 from tensorflow.python.summary import summary 160 tf_export(v1=['Event', 'summary.Event'])(Event) 172 tf_export(v1=['SessionLog', 'summary.SessionLog'])(SessionLog) 173 tf_export(v1=['Summary', 'summary.Summary'])(Summary) 174 tf_export(v1=['summary.SummaryDescription'])(SummaryDescription) 176 tf_export(v1=['summary.TaggedRunMetadata'])(TaggedRunMetadata [all...] |
/external/tensorflow/tensorflow/python/summary/ |
summary.py | 16 """Operations for writing summary data, for use in analysis and visualization. 28 # exports Summary, SummaryDescription, Event, TaggedRunMetadata, SessionLog 30 from tensorflow.core.framework.summary_pb2 import Summary 49 from tensorflow.python.summary.writer.writer import FileWriter 50 from tensorflow.python.summary.writer.writer_cache import FileWriterCache 57 @tf_export(v1=['summary.scalar']) 59 """Outputs a `Summary` protocol buffer containing a single scalar value. 61 The generated Summary has a Tensor.proto containing the input Tensor. 67 collections: Optional list of graph collections keys. The new summary op is 69 family: Optional; if provided, used as the prefix of the summary tag name [all...] |
/external/tensorflow/tensorflow/python/summary/writer/ |
writer.py | 34 from tensorflow.python.summary import plugin_asset 35 from tensorflow.python.summary.writer.event_file_writer import EventFileWriter 36 from tensorflow.python.summary.writer.event_file_writer_v2 import EventFileWriterV2 53 On construction the summary writer creates a new event file in `logdir`. 69 # Create a summary writer, add the 'graph' to the event file. 70 writer = tf.summary.FileWriter(<some-directory>, sess.graph) 93 # This set contains tags of Summary Values that have been encountered 95 # metadata property (which is a SummaryMetadata proto) of the first Summary 97 # SummaryMetadata for all subsequent Summary Values with tags seen 101 def add_summary(self, summary, global_step=None) [all...] |
/external/tensorflow/tensorflow/core/grappler/costs/ |
virtual_scheduler.cc | [all...] |
virtual_scheduler_test.cc | [all...] |
/external/tensorflow/tensorflow/python/training/ |
basic_session_run_hooks.py | 27 from tensorflow.core.framework.summary_pb2 import Summary 677 summary = Summary(value=[Summary.Value( 679 self._summary_writer.add_summary(summary, global_step) 782 summary_op: `Tensor` of type `string` containing the serialized `Summary` 784 by TF summary methods like `tf.summary.scalar` or 785 `tf.summary.merge_all`. It can be passed in as one tensor; if more 819 requests["summary"] = self._get_summary_op( [all...] |
supervisor.py | 24 from tensorflow.core.framework.summary_pb2 import Summary 34 from tensorflow.python.summary import summary as _summary 150 `managed_session()` launches the Checkpoint and Summary services (threads). 168 `managed_session()` launches the "summary" and "checkpoint" threads which use 171 your own summary and checkpointing logic, disable these services by passing 180 # summary thread. 186 # Create the summary every 100 chief steps. 265 summary_op: An `Operation` that returns a Summary for the event logs. 267 operation returned from summary.merge_all(). If `None`, summaries ar [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/ |
WholeProgramDevirt.cpp | 37 // type identifier summary. 95 "wholeprogramdevirt-summary-action", 96 cl::desc("What to do with the summary when running this pass"), 99 "Import typeid resolutions from summary and globals"), 101 "Export typeid resolutions to summary and globals")), 105 "wholeprogramdevirt-read-summary", 106 cl::desc("Read summary from given YAML file before running pass"), 110 "wholeprogramdevirt-write-summary", 111 cl::desc("Write summary to given YAML file after running pass"), 333 /// Whether any function summary contains an llvm.assume(llvm.type.test) fo [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/LTO/ |
LTO.cpp | 59 // The values are (type identifier, summary) pairs. 260 for (auto *Summary : SummariesI->second) 261 AddTypeIdSummary(Summary->first, Summary->second); 467 // Flag as visible outside of summary if visible from a regular object or 468 // from a module that does not have a summary. 742 // Find the summary in the module for this very GV and record the new 751 // as local in the summary for the module we are adding. [all...] |
/external/tensorflow/tensorflow/contrib/learn/python/learn/ |
monitors.py | 48 from tensorflow.core.framework.summary_pb2 import Summary 53 from tensorflow.python.summary import summary as core_summary 531 summary_op: `Tensor` of type `string`. A serialized `Summary` protocol 532 buffer, as output by TF summary methods like `summary.scalar` or 533 `summary.merge_all`. [all...] |
/external/llvm/lib/ProfileData/ |
SampleProfReader.cpp | 473 Summary = llvm::make_unique<ProfileSummary>( 793 // For text and GCC file formats, we compute the summary after reading the 794 // profile. Binary format has the profile summary in its header. 801 Summary = Builder.getSummary();
|
/external/opencensus-java/contrib/zpages/src/main/java/io/opencensus/contrib/zpages/ |
TracezZPageHandler.java | 74 * <p>It prints a summary table which contains one row for each span name and data about number of 183 out.write("<h1>TraceZ Summary</h1>\n"); 415 // Emits the summary table with links to all samples. 421 RunningSpanStore.Summary runningSpanStoreSummary = runningSpanStore.getSummary(); 422 SampledSpanStore.Summary sampledSpanStoreSummary = sampledSpanStore.getSummary();
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/ |
SampleProfReader.cpp | 566 Summary = llvm::make_unique<ProfileSummary>( 889 // For text and GCC file formats, we compute the summary after reading the 890 // profile. Binary format has the profile summary in its header. 897 Summary = Builder.getSummary();
|
/external/syzkaller/vendor/golang.org/x/net/trace/ |
trace.go | 1042 <a href="?fam={{$.Family}}&b={{$.Bucket}}">[Normal/Summary]</a> 1044 [Normal/Summary] 1055 <a href="?fam={{$.Family}}&b={{$.Bucket}}&rtraced=1">[Traced/Summary]</a> 1057 [Traced/Summary]
|
/external/tensorflow/tensorflow/core/debug/ |
debug_io_utils.cc | 37 #include "tensorflow/core/framework/summary.pb.h" 68 Summary::Value* value = event.mutable_summary()->add_value(); 70 // Create the debug node_name in the Summary proto. 72 // "DebugIdentity", the debug node_name in the Summary proto will be 94 // Store summary metadata. Set the plugin to use this data as "debugger". 162 Summary::Value* value = event.mutable_summary()->mutable_value(0); 183 // proto the field summary.tensor carries the content of the tensor. [all...] |