Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 172 for graphml (0.3 sec)

  1. platforms/documentation/docs/README.md

     - A single-page HTML manual at `build/working/usermanual/render-single-html/userguide_single.html`
     - A PDF at `build/working/usermanual/render-single-pdf/userguide_single.pdf`
    
    Note that PNG files in the source are generated from ".graphml" files in the same directory.  You can edit these files
    with tools like [yEd](http://www.yworks.com/en/products_yed_about.html) and then generate the associated PNG.
    
    ### Authoring with AsciiDoc
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_save_function_ops_to_main.cc

    // `FetchOp` will be used without modified. Returns the fetch operands from the
    // `scr_graph_op`.
    Value CloneGraphOps(GraphOp src_graph_op, GraphOp dst_graph_op,
                        IRMapping& mapper) {
      Block& main_body = dst_graph_op.GetBody();
    
      // Take the reference of the main graph's FetchOp to later move to the end.
      FetchOp main_fetch_op = dst_graph_op.GetFetch();
    
      Block& save_func_body = src_graph_op.GetBody();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/html/graph.css

    #graph {
        cursor: grab;
    }
    
    #graph:active {
        cursor: grabbing;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 70 bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    }
    
    // New summarizes performance data from a profile into a graph.
    func New(prof *profile.Profile, o *Options) *Graph {
    	if o.CallTree {
    		return newTree(prof, o)
    	}
    	g, _ := newGraph(prof, o)
    	return g
    }
    
    // newGraph computes a graph from a profile. It returns the graph, and
    // a map from the profile location indices to the corresponding graph
    // nodes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_test.cc

      TF_Status* s = TF_NewStatus();
      TF_Graph* graph = TF_NewGraph();
    
      // Create a simple graph.
      Placeholder(graph, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
      ASSERT_TRUE(TF_GraphOperationByName(graph, "feed") != nullptr);
      TF_Operation* oper = ScalarConst(3, graph, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
      ASSERT_TRUE(TF_GraphOperationByName(graph, "scalar") != nullptr);
      Neg(oper, graph, s);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

    // tf_executor.graph
    //===----------------------------------------------------------------------===//
    
    FetchOp GraphOp::GetFetch() { return llvm::cast<FetchOp>(GetBody().back()); }
    
    LogicalResult GraphOp::verify() {
      GraphOp graph = *this;
      auto *executorDialect = graph->getDialect();
    
      if (graph.GetBody().empty())
        return graph.emitOpError() << "expects a non-empty body";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

      });
    }
    
    class ConvertGraphOp : public OpConversionPattern<tfg::GraphOp> {
     public:
      using OpConversionPattern::OpConversionPattern;
    
      LogicalResult matchAndRewrite(
          tfg::GraphOp graph, OpAdaptor adaptor,
          ConversionPatternRewriter &rewriter) const final {
        Location loc = graph.getLoc();
        // To keep the import-as-graph logic taken by TFG, we create `void func()`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  8. docs/en/mkdocs.yml

          advanced/async-sql-databases.md: how-to/async-sql-encode-databases.md
          advanced/nosql-databases.md: how-to/nosql-databases-couchbase.md
          advanced/graphql.md: how-to/graphql.md
          advanced/custom-request-and-route.md: how-to/custom-request-and-route.md
          advanced/conditional-openapi.md: how-to/conditional-openapi.md
          advanced/extending-openapi.md: how-to/extending-openapi.md
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

      MergedIsland* GetOperandCandidateToMergeWith(GraphOp graph,
                                                   MergedIsland& merged_island);
    
      // Attempt to find an island group that consumes a result, either control or
      // data, from one of the islands in the given `merged_island`. If no candidate
      // can be found, returns nullptr.
      MergedIsland* GetResultCandidateToMergeWith(GraphOp graph,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/html/graph.html

    <!DOCTYPE html>
    <html>
    <head>
      <meta charset="utf-8">
      <title>{{.Title}}</title>
      {{template "css" .}}
      {{template "graph_css" .}}
    </head>
    <body>
      {{template "header" .}}
      <div id="graph">
        {{.HTMLBody}}
      </div>
      {{template "script" .}}
      <script>viewer(new URL(window.location.href), {{.Nodes}});</script>
    </body>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 334 bytes
    - Viewed (0)
Back to top