HomeSort by relevance Sort by last modified time
    Searched refs:Graph (Results 301 - 325 of 1024) sorted by null

<<11121314151617181920>>

  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Analysis/
CFGPrinter.h 11 // cfg.<fnname>.dot file for each function in the program, with a graph of the
121 const Function *Graph) {
123 return getSimpleNodeLabel(Node, Graph);
125 return getCompleteNodeLabel(Node, Graph);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Analysis/
CFGPrinter.h 11 // cfg.<fnname>.dot file for each function in the program, with a graph of the
121 const Function *Graph) {
123 return getSimpleNodeLabel(Node, Graph);
125 return getCompleteNodeLabel(Node, Graph);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Analysis/
CFGPrinter.h 11 // cfg.<fnname>.dot file for each function in the program, with a graph of the
121 const Function *Graph) {
123 return getSimpleNodeLabel(Node, Graph);
125 return getCompleteNodeLabel(Node, Graph);
  /external/tensorflow/tensorflow/contrib/nccl/kernels/
nccl_rewrite.cc 22 #include "tensorflow/core/graph/node_builder.h"
29 Status ReplaceReduce(Graph* graph, Node* node) {
74 TF_RETURN_IF_ERROR(send_builder.Finalize(graph, &send_node));
77 // to the outputs of the graph. We add a control dependency to the receive
81 graph->AddControlEdge(send_node, out_node.node);
89 TF_RETURN_IF_ERROR(recv_builder.Finalize(graph, &recv_node));
91 graph->RemoveNode(node);
93 if (out_node.index == Graph::kControlSlot) {
94 graph->AddControlEdge(recv_node, out_node.node)
248 Graph* graph = options.graph->get(); variable
    [all...]
  /external/tensorflow/tensorflow/core/graph/
subgraph.cc 16 #include "tensorflow/core/graph/subgraph.h"
25 #include "tensorflow/core/framework/graph.pb.h"
28 #include "tensorflow/core/graph/algorithm.h"
29 #include "tensorflow/core/graph/graph.h"
30 #include "tensorflow/core/graph/graph_constructor.h"
31 #include "tensorflow/core/graph/node_builder.h"
32 #include "tensorflow/core/graph/tensor_id.h"
47 // Rewrite graph by replacing the output tensors specified in
50 // part of the graph that reaches the sink node. The set of specia
    [all...]
mkl_layout_pass_test.cc 18 #include "tensorflow/core/graph/mkl_layout_pass.h"
19 #include "tensorflow/core/graph/mkl_graph_util.h"
27 #include "tensorflow/core/graph/graph.h"
28 #include "tensorflow/core/graph/graph_constructor.h"
29 #include "tensorflow/core/graph/testlib.h"
48 static void InitGraph(const string& s, Graph* graph,
56 TF_CHECK_OK(ConvertGraphDefToGraph(opts, graph_def, graph));
58 for (Node* node : graph->nodes())
1880 Graph* graph = new Graph(OpRegistry::Global()); local
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
sparse_dense_binary_op_shared_test.cc 24 #include "tensorflow/core/graph/graph.h"
25 #include "tensorflow/core/graph/node_builder.h"
211 static Graph* SparseMatCMulDenseMat(Graph* g, Node* sp_indices, Node* sp_vals,
224 static Node* MakeTensor(Graph* g, int B, int M, int N) {
227 return test::graph::Constant(g, data);
236 static ST MakeSparseTensor(Graph* g, int B, int M, int N, int nnz_inner) {
271 return ST{test::graph::Constant(g, indices), test::graph::Constant(g, vals)
    [all...]
  /external/tensorflow/tensorflow/python/grappler/
cluster_test.py 35 with ops.Graph().as_default() as g:
41 mg = meta_graph.create_meta_graph_def(graph=g)
52 with ops.Graph().as_default() as g:
58 mg = meta_graph.create_meta_graph_def(graph=g)
69 with ops.Graph().as_default() as g:
76 mg = meta_graph.create_meta_graph_def(graph=g)
89 with ops.Graph().as_default() as g:
95 mg = meta_graph.create_meta_graph_def(graph=g)
115 with ops.Graph().as_default() as g:
121 mg = meta_graph.create_meta_graph_def(graph=g
    [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
reduction_ops_test_big.py 66 with self.test_session(graph=ops.Graph(), use_gpu=True) as sess:
84 with self.test_session(graph=ops.Graph(), use_gpu=True) as sess:
109 with self.test_session(graph=ops.Graph(), use_gpu=True) as sess:
128 with self.test_session(graph=ops.Graph(), use_gpu=True) as sess:
152 with self.test_session(graph=ops.Graph(), use_gpu=True) as sess
    [all...]
stage_op_test.py 32 with ops.Graph().as_default() as G:
44 with self.test_session(use_gpu=True, graph=G) as sess:
51 with ops.Graph().as_default() as G:
63 with self.test_session(use_gpu=True, graph=G) as sess:
71 with ops.Graph().as_default() as G:
88 with self.test_session(use_gpu=True, graph=G) as sess:
98 with ops.Graph().as_default() as G:
114 with ops.Graph().as_default() as G:
129 with self.test_session(use_gpu=True, graph=G) as sess:
137 with ops.Graph().as_default() as G
    [all...]
  /external/v8/src/compiler/
loop-peeling.cc 7 #include "src/compiler/graph.h"
49 // from the peeled iteration, resulting in the graph as follows:
98 // graph, but are instead computed by the {LoopFinder}.
110 Peeling(Graph* graph, Zone* tmp_zone, size_t max, NodeVector* p)
111 : node_map(graph, static_cast<uint32_t>(max)), pairs(p) {}
124 void CopyNodes(Graph* graph, Zone* tmp_zone, Node* dead, NodeRange nodes) {
132 Node* copy = graph->NewNode(node->op(), node->InputCount(), &inputs[0]);
207 PeeledIteration* LoopPeeler::Peel(Graph* graph, CommonOperatorBuilder* common
    [all...]
memory-optimizer.h 8 #include "src/compiler/graph-assembler.h"
18 class Graph;
64 // An allocation state is propagated on the effect paths through the graph.
102 // path through the graph.
129 Graph* graph() const;
state-values-utils.h 10 #include "src/compiler/js-graph.h"
20 class Graph;
73 Graph* graph() { return js_graph_->graph(); } function in class:v8::internal::compiler::StateValuesCache
76 Zone* zone() { return graph()->zone(); }
  /external/tensorflow/tensorflow/python/framework/
function_test.py 83 with ops.Graph().as_default():
95 with ops.Graph().as_default():
111 with ops.Graph().as_default():
125 with ops.Graph().as_default():
138 with ops.Graph().as_default():
151 with ops.Graph().as_default():
165 with ops.Graph().as_default():
178 g = ops.Graph()
200 g = ops.Graph()
215 g = ops.Graph()
    [all...]
  /external/tensorflow/tensorflow/contrib/boosted_trees/estimator_batch/
trainer_hooks_test.py 46 with ops.Graph().as_default():
47 # Begin won't be able to find the required tensors in the graph.
56 with ops.Graph().as_default(), tf_session.Session() as sess:
62 # Begin finds tensors in the graph.
  /external/tensorflow/tensorflow/contrib/compiler/
jit_test.py 52 with self.test_session(graph=ops.Graph()) as sess:
73 v_true_1_t_sampler_op = v_true_1_t.graph.get_operation_by_name(
75 v_all_true_t_sampler_op = v_all_true_t.graph.get_operation_by_name(
92 with self.test_session(graph=ops.Graph()):
142 with self.test_session(graph=ops.Graph()):
150 graph_def = r.graph.as_graph_def()
157 with self.test_session(graph=ops.Graph())
    [all...]
  /external/tensorflow/tensorflow/contrib/copy_graph/python/util/
copy_test.py 29 graph1 = ops.Graph()
30 graph2 = ops.Graph()
  /external/tensorflow/tensorflow/contrib/quantize/python/
quant_ops_test.py 35 g = ops.Graph()
36 with session.Session(graph=g) as sess:
54 g = ops.Graph()
55 with session.Session(graph=g) as sess:
  /external/tensorflow/tensorflow/contrib/training/python/training/
training_test.py 93 with ops.Graph().as_default():
106 with ops.Graph().as_default():
143 with ops.Graph().as_default():
176 with ops.Graph().as_default():
199 with ops.Graph().as_default():
236 with ops.Graph().as_default():
272 with ops.Graph().as_default():
293 with ops.Graph().as_default():
320 with ops.Graph().as_default():
383 with ops.Graph().as_default()
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
constant_folding_test.cc 34 #include "tensorflow/core/graph/node_builder.h"
72 // Builds a map from node name to Node* for `graph`.
73 std::unordered_map<string, Node*> NodeNameIndex(const Graph& graph) {
75 for (Node* node : graph.nodes()) {
81 // Constructs the following graph.
104 Graph g(OpRegistry::Global());
124 // Tests that different node creation ordering creates same graph after constant
127 auto build_graph_and_constant_folding = [](Graph& g, bool swap) -> Status {
152 auto generate_new_name = [&unique_id](Graph* graph, string old_name)
    [all...]
graph_execution_state.cc 26 #include "tensorflow/core/framework/graph.pb_text.h"
30 #include "tensorflow/core/graph/graph.h"
31 #include "tensorflow/core/graph/graph_constructor.h"
32 #include "tensorflow/core/graph/subgraph.h"
33 #include "tensorflow/core/graph/tensor_id.h"
34 #include "tensorflow/core/graph/validate.h"
100 // execution states to optimize pruned graph execution, but since
102 // bet that graph construction is not performance-critical. (Note
131 // 3. Add the non-duplicates from the old graph to the new graph
    [all...]
renamed_device.h 109 Status MaybeRewriteGraph(std::unique_ptr<Graph>* graph) override {
110 return underlying_->MaybeRewriteGraph(graph);
113 Status FillContextMap(const Graph* graph,
115 return underlying_->FillContextMap(graph, device_context_map);
  /external/tensorflow/tensorflow/core/distributed_runtime/
graph_mgr.h 48 // TensorFlow worker. Each registered graph is identified by a handle
51 // After a successful registration, the caller executes a graph using
52 // the graph handle. Each execution is distinguished from others by a
54 // can use the same graph concurrently and independently as long as
62 // TF_CHECK_OK(gmgr.Register("session", { graph computes c = a + b },
74 // Registers a graph. Fills in "handle". The registered graph retains a
82 // Executes one step of a registered graph "handle".
100 // Deregisters a graph.
110 Graph* graph = nullptr; // not owned member in struct:tensorflow::GraphMgr::ExecutionUnit
    [all...]
  /external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/
ShapeTest.java 64 try (Graph g = new Graph()) {
  /external/tensorflow/tensorflow/python/training/
checkpoint_utils_test.py 119 # New graph and session.
120 with ops.Graph().as_default() as g:
121 with self.test_session(graph=g) as session:
145 # Check that tensors are not explicitly in the graph.
146 self.assertLess(len(str(session.graph.as_graph_def())), 29000)
153 with ops.Graph().as_default() as g:
162 with self.test_session(graph=g) as session:
172 with ops.Graph().as_default():
186 # New graph and session.
187 with ops.Graph().as_default() as g
    [all...]

Completed in 635 milliseconds

<<11121314151617181920>>