| /external/tensorflow/tensorflow/core/common_runtime/ |
| kernel_benchmark_testlib.h | 24 #include "tensorflow/core/graph/testlib.h" 40 Benchmark(const string& device, Graph* g, 41 const SessionOptions* options = nullptr, Graph* init = nullptr, 45 // Executes the graph for "iters" times. 49 // inputs to the corresponding recv nodes in the graph, after each 51 // the graph. In the benchmark, we throw away values returned by the 52 // graph.
|
| /external/tensorflow/tensorflow/core/graph/ |
| subgraph.h | 22 #include "tensorflow/core/graph/graph.h" 29 // Information about a graph rewritten by `RewriteGraphForExecution()`. 41 // Rewrite the graph structure of "*g" to deal with feeding node 43 // graph. "fed_outputs" and "fetch_outputs" are both lists of 48 // In the resulting graph "*g", output edges in "fed_outputs" have 49 // been redirected to special "_recv" nodes introduced into the graph. 52 // be omitted from the graph. 54 // In the resulting graph "*g", additional "_send" nodes are connected 59 // that represents the portions of the graph necessary for producin [all...] |
| control_flow.h | 21 #include "tensorflow/core/graph/graph.h" 26 // Control flow info for a graph node. 34 // We check the well-formedness of the graph: All inputs to a node must 40 Status BuildControlFlowInfo(Graph* g, std::vector<ControlFlowInfo>* info);
|
| gradients.h | 19 #include "tensorflow/core/graph/graph.h" 40 // 'y_node_outputs'), adds gradient nodes to 'graph' that compute the symbolic 54 Graph* graph);
|
| quantize_training.h | 19 #include "tensorflow/core/graph/graph.h" 22 // Rewrites graph for quantized training. 39 Graph* g);
|
| /external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/ |
| TensorFlowTest.java | 45 try (Graph g = new Graph()) { 46 // Build a graph with an unrecognized operation. 58 // Now graph building should succeed.
|
| OperationBuilderTest.java | 35 try (Graph g1 = new Graph(); 36 Graph g2 = new Graph()) { 50 try (Graph g = new Graph(); 66 try (Graph g = new Graph(); 86 try (Graph g = new Graph()) { [all...] |
| /external/v8/src/compiler/ |
| verifier.h | 15 class Graph; 20 // Verifies properties of a graph, such as the well-formedness of inputs to 27 static void Run(Graph* graph, Typing typing = TYPED,
|
| common-operator-reducer.h | 9 #include "src/compiler/graph-reducer.h" 18 class Graph; 27 CommonOperatorReducer(Editor* editor, Graph* graph, 46 Graph* graph() const { return graph_; } function in class:v8::internal::compiler::final 51 Graph* const graph_;
|
| node-marker.cc | 7 #include "src/compiler/graph.h" 13 NodeMarkerBase::NodeMarkerBase(Graph* graph, uint32_t num_states) 14 : mark_min_(graph->mark_max_), mark_max_(graph->mark_max_ += num_states) {
|
| /system/update_engine/payload_generator/ |
| tarjan.h | 21 // Strongly Connected Components in a graph. 24 // in the graph. This implementation will only find the strongly connected 39 Graph* graph, 42 void Tarjan(Vertex::Index vertex, Graph* graph);
|
| /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/PBQP/ |
| HeuristicSolver.h | 19 #include "Graph.h" 29 /// to HeuristicSolver<HImpl>::solve(Graph&). 33 /// backpropagation phase, and maintains the internal copy of the graph on 43 typedef std::list<Graph::EdgeItr> SolverEdges; 47 /// \brief Iterator type for edges in the solver graph. 58 SolverEdgeItr addSolverEdge(Graph::EdgeItr eItr) { 104 Graph &g; 107 std::vector<Graph::NodeItr> stack; 118 /// graph. 119 /// @param g The graph representing the problem instance to be solved [all...] |
| Graph.h | 1 //===-------------------- Graph.h - PBQP Graph ------------------*- C++ -*-===// 10 // PBQP Graph class. 25 /// PBQP Graph class. 27 class Graph { 139 inline void copyFrom(const Graph &other); 142 /// \brief Construct an empty PBQP graph. 143 Graph() : numNodes(0), numEdges(0) {} 145 /// \brief Copy construct this graph from "other". Note: Does not copy node 146 /// and edge data, only graph structure and costs [all...] |
| /external/tensorflow/tensorflow/core/kernels/ |
| random_op_test.cc | 40 Graph* RandomUniform(int64 n) { 41 Graph* g = new Graph(OpRegistry::Global()); 42 test::graph::RandomUniform(g, test::graph::Constant(g, VecShape(n)), 47 Graph* RandomNormal(int64 n) { 48 Graph* g = new Graph(OpRegistry::Global()); 49 test::graph::RandomGaussian(g, test::graph::Constant(g, VecShape(n)) [all...] |
| sdca_ops_test.cc | 19 #include "tensorflow/core/graph/node_builder.h" 52 Node* Var(Graph* const g, const int n) { 53 return test::graph::Var(g, DT_FLOAT, TensorShape({n})); 57 std::vector<Node*> VarVector(Graph* const g, const int nodes, 67 Node* Zeros(Graph* const g, const TensorShape& shape) { 70 return test::graph::Constant(g, data); 73 Node* Zeros(Graph* const g, const int n) { return Zeros(g, TensorShape({n})); } 75 Node* Ones(Graph* const g, const int n) { 78 return test::graph::Constant(g, data); 81 Node* SparseIndices(Graph* const g, const int sparse_features_per_group) [all...] |
| /external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/op/core/ |
| ConstantTest.java | 32 import org.tensorflow.Graph; 46 try (Graph g = new Graph(); 62 try (Graph g = new Graph(); 77 try (Graph g = new Graph(); 92 try (Graph g = new Graph(); 123 try (Graph g = new Graph() [all...] |
| /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/ |
| OperationBuilder.java | 21 * A builder for {@link Operation}s in a {@link Graph}. 25 * <p>A builder for adding {@link Operation}s to a {@link Graph}. For example, the following uses 29 * // g is a Graph instance. 40 OperationBuilder(Graph graph, String type, String name) { 41 this.graph = graph; 42 Graph.Reference r = graph.ref(); 51 * Add the {@link Operation} being built to the {@link Graph} 314 private Graph graph; field in class:OperationBuilder [all...] |
| /external/llvm/lib/CodeGen/ |
| ScheduleDAGPrinter.cpp | 46 const ScheduleDAG *Graph) { 57 const ScheduleDAG *Graph) { 66 std::string getNodeLabel(const SUnit *Node, const ScheduleDAG *Graph); 68 const ScheduleDAG *Graph) { 99 viewGraph(getDAGName(), "Scheduling-Units Graph for " + getDAGName());
|
| /external/swiftshader/third_party/LLVM/lib/CodeGen/ |
| ScheduleDAGPrinter.cpp | 47 const ScheduleDAG *Graph) { 55 const ScheduleDAG *Graph) { 64 std::string getNodeLabel(const SUnit *Node, const ScheduleDAG *Graph); 66 const ScheduleDAG *Graph) { 90 "Scheduling-Units Graph for " + MF.getFunction()->getNameStr() + 94 "Scheduling-Units Graph for " + MF.getFunction()->getNameStr());
|
| /external/tensorflow/tensorflow/cc/framework/ |
| scope.h | 31 class Graph; 84 /// Graph object to which operations are added when the new scope or its 105 /// This creates a new graph and all operations constructed in this graph 180 // TODO(skyewm): Graph is not part of public API 181 Graph* graph() const; 183 // TODO(skyewm): Graph is not part of public API 184 std::shared_ptr<Graph> graph_as_shared_ptr() const; 188 /// If status() is Status::OK(), convert the Graph object stored in this scop [all...] |
| /external/tensorflow/tensorflow/compiler/tf2xla/ |
| dump_graph.h | 23 #include "tensorflow/core/framework/graph.pb.h" 24 #include "tensorflow/core/graph/graph.h" 34 // If a graph has already been dumped by this process with the same name, 38 // Similar to DumpGraphDefToFile, but builds the GraphDef to dump from a 'graph' 40 string DumpGraphToFile(const string& name, Graph const& graph,
|
| /external/tensorflow/tensorflow/core/common_runtime/gpu/ |
| gpu_stream_util.h | 21 #include "tensorflow/core/graph/graph.h" 37 // Given the input graph, assigns every node in the graph with a 39 Status AssignStreams(const Graph* graph, const AssignStreamsOpts& opts,
|
| /external/tensorflow/tensorflow/core/debug/ |
| debug_graph_utils.h | 24 #include "tensorflow/core/graph/graph.h" 33 // EXPERIMENTAL: Insert special debug ops (e.g., DebugIdentity) to graph for 36 // For example, before the node insertion, the graph may look like: 45 // graph becomes: 52 // If a node (e.g., B) has Ref input, the graph becomes: 75 const protobuf::RepeatedPtrField<DebugTensorWatch>& watches, Graph* graph, 82 static void DeparallelizeWhileLoops(Graph* graph, Device* device) [all...] |
| /external/tensorflow/tensorflow/go/ |
| saved_model_test.go | 26 if op := bundle.Graph.Operation("y"); op == nil { 27 t.Fatalf("\"y\" not found in graph")
|
| util_test.go | 19 func Placeholder(g *Graph, name string, dt DataType) (Output, error) { 30 func Const(g *Graph, name string, value interface{}) (Output, error) { 49 func Neg(g *Graph, name string, port Output) (Output, error) { 58 func Add(g *Graph, name string, x, y Output) (Output, error) {
|