/external/v8/src/compiler/ |
load-elimination.h | 9 #include "src/compiler/graph-reducer.h" 26 class Graph; 45 // the effect paths through the graph. 77 // effect paths through the graph. 135 // the effect paths through the graph. 194 // effect paths through the graph. 308 Graph* graph() const;
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
syn.h | 389 typedef struct { Node *left, *right;} Graph;
|
/external/clang/test/SemaCXX/ |
warn-thread-safety-parsing.cpp | [all...] |
/external/llvm/lib/Analysis/ |
RegionPrinter.cpp | 44 std::string getNodeLabel(RegionNode *Node, RegionNode *Graph) { 67 static std::string getGraphName(const RegionInfo *) { return "Region Graph"; }
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
RegionPrinter.cpp | 44 std::string getNodeLabel(RegionNode *Node, RegionNode *Graph) { 67 static std::string getGraphName(const RegionInfo *) { return "Region Graph"; }
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-xray/ |
xray-graph.h | 1 //===-- xray-graph.h - XRay Function Call Graph Renderer --------*- C++ -*-===// 10 // Generate a DOT file to represent the function call graph encountered in 28 #include "llvm/XRay/Graph.h" 57 /// An inner struct for storing edge attributes for our graph. Here the 85 class GraphT : public Graph<FunctionStats, CallStats, int32_t> { 96 /// graph. 112 /// Graph 116 /// Graph 134 /// Process an Xray record and expand the graph [all...] |
/external/tensorflow/tensorflow/compiler/jit/ |
mark_for_compilation_pass.cc | 44 #include "tensorflow/core/graph/algorithm.h" 45 #include "tensorflow/core/graph/control_flow.h" 46 #include "tensorflow/core/graph/graph_constructor.h" 57 // PartitionedCall op to execute the cluster in the regular graph executor if 58 // need be. PartitionedCall, however, reruns the entire TF graph optimization 248 // tf2xla to translate the TF graph into XLA. So we avoid this for now. 256 for (Node* node : fbody->graph->op_nodes()) { 449 const Graph& graph, FunctionLibraryDefinition* flib_def, Env* env, 458 std::vector<bool> compile_time_const_nodes(graph.num_node_ids(), false) 1084 Graph* graph = options.graph->get(); local [all...] |
node_matchers.h | 68 #include "tensorflow/core/graph/graph.h" 244 Node* FindNodeByName(Graph* g, absl::string_view name);
|
resource_operation_safety_analysis.cc | 35 // - In the graph (g - {edges from NextIteration to Merge}) there is a path 74 // We traverse the graph minus backedges in reverse post order, mapping each 89 #include "tensorflow/core/graph/algorithm.h" 90 #include "tensorflow/core/graph/tensor_id.h" 170 // TensorFlow graph. 267 const Graph& g, const FunctionLibraryDefinition* flib_def,
|
xla_fusion_optimizer.cc | 32 #include "tensorflow/core/graph/graph_constructor.h" 129 // appropriate fusion clusters with XlaLaunch nodes. The remaining graph can 134 // Create a Graph out of GraphDef. This is required currently because the 137 item.graph.library()); 138 Graph graph(function_library); 139 ShapeRefiner shape_refiner(graph.versions(), graph.op_registry()); 143 // Graph optimization happens at the late stage of graph execution, whe [all...] |
/external/tensorflow/tensorflow/compiler/tests/ |
adamax_test.py | 75 with ops.Graph().as_default():
|
/external/tensorflow/tensorflow/contrib/boosted_trees/python/kernel_tests/ |
quantile_ops_test.py | 341 with self.session(graph=ops.Graph()) as sess: 369 with self.session(graph=ops.Graph()) as sess: 392 with self.session(graph=ops.Graph()) as sess: 416 with self.session(graph=ops.Graph()) as sess:
|
/external/tensorflow/tensorflow/contrib/distribute/python/ |
collective_all_reduce_strategy_test.py | 154 with ops.Graph().as_default(), \ 264 with ops.Graph().as_default(), \ 282 with ops.Graph().as_default(), \ 320 with ops.Graph().as_default(), \ 360 combinations.combine(mode=['graph'], use_core_strategy=[True, False])) 375 mode=['graph'], 388 mode=['graph'], 403 mode=['graph'], 420 mode=['graph'], 456 combinations.combine(mode=['graph'], use_core_strategy=[True, False]) [all...] |
/external/tensorflow/tensorflow/contrib/eager/python/examples/rnn_ptb/ |
rnn_ptb_graph_test.py | 15 """Tests for PTBModel used for graph construction.""" 35 with tf.Graph().as_default(), tf.device(tf.test.gpu_device_name()):
|
/external/tensorflow/tensorflow/contrib/eager/python/ |
parameter_server.py | 48 with context.graph_mode(), ops.Graph().as_default() as graph: 61 # Clean up op->graph->op reference cycles. 62 ops.dismantle_graph(graph) 121 initial_value, "graph") and initial_value.graph.building_function: 139 # Store the graph key so optimizers know how to only retrieve variables from 140 # this graph.
|
/external/tensorflow/tensorflow/contrib/factorization/examples/ |
mnist.py | 190 # Tell TensorFlow that the model will be built into the default Graph. 191 with tf.Graph().as_default(): 195 # Build a Graph that computes predictions from the inference model. 202 # Add to the Graph the Ops for loss calculation. 205 # Add to the Graph the Ops that calculate and apply gradients. 215 # Create a session for running Ops on the Graph.
|
/external/tensorflow/tensorflow/contrib/factorization/python/kernel_tests/ |
masked_matmul_benchmark.py | 64 """Run the graph and return its average execution time. 79 graph = ops.Graph() 81 with graph.as_default(), session_lib.Session(graph=graph) as session:
|
/external/tensorflow/tensorflow/contrib/fused_conv/python/ops/ |
fused_conv2d_bias_activation_benchmark.py | 34 """builds a graph containing a sequence of conv2d operations. 79 """builds a graph containing a sequence of conv2d operations. 136 """runs the graph and print its execution time. 154 graph = ops.Graph() 155 with graph.as_default(): 159 with session_lib.Session(graph=graph) as session:
|
/external/tensorflow/tensorflow/contrib/graph_editor/tests/ |
subgraph_test.py | 30 self.graph = ops.Graph() 31 with self.graph.as_default(): 45 sgv = ge.sgv(self.graph) 54 sgv = ge.sgv_scope("foo/bar", graph=self.graph) 80 sgv = ge.sgv(self.graph)
|
/external/tensorflow/tensorflow/contrib/layers/python/layers/ |
initializers_test.py | 87 with ops.Graph().as_default() as g: 88 with self.session(graph=g) as sess:
|
/external/tensorflow/tensorflow/contrib/predictor/ |
saved_model_predictor_test.py | 161 """Test that the predictor remembers a specified `Graph`.""" 162 g = ops.Graph() 165 graph=g) 166 self.assertEqual(predictor.graph, g)
|
/external/tensorflow/tensorflow/core/common_runtime/gpu/ |
gpu_device.h | 79 Status FillContextMap(const Graph* graph,
|
/external/tensorflow/tensorflow/core/common_runtime/ |
process_function_library_runtime.h | 244 const DeviceSet& device_set, Graph* graph) const;
|
/external/tensorflow/tensorflow/core/debug/ |
debug_io_utils.h | 29 #include "tensorflow/core/graph/graph.h" 90 // Publishes a graph to a set of debug URLs. 93 // graph: The graph to be published. 94 // debug_urls: The set of debug URLs to publish the graph to. 95 static Status PublishGraph(const Graph& graph, const string& device_name, 164 // wall_time_us: Wall time at which the Tensor is generated during graph
|
/external/tensorflow/tensorflow/core/graph/ |
node_builder.cc | 16 #include "tensorflow/core/graph/node_builder.h" 115 Status NodeBuilder::Finalize(Graph* graph, Node** created_node) const { 126 CheckOpDeprecation(def_builder_.op_def(), graph->versions().producer())); 128 Node* node = graph->AddNode(node_def, &status); 135 graph->AddEdge(inputs_[i].node, inputs_[i].index, node, i); 139 graph->AddControlEdge(control_input, node);
|