Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,797 for _Graph (0.17 sec)

  1. src/cmd/go/testdata/script/mod_graph_version.txt

    # the main module).
    
    cp go.mod go.mod.orig
    
    go mod graph
    cp stdout graph-1.17.txt
    stdout '^example\.com/m example\.com/retract/incompatible@v1\.0\.0$'
    stdout '^example\.net/lazy@v0\.1\.0 example\.com/retract/incompatible@v1\.0\.0$'
    ! stdout 'example\.com/retract/incompatible@v2\.0\.0\+incompatible'
    
    go mod graph -go=1.17
    cmp stdout graph-1.17.txt
    
    cmp go.mod go.mod.orig
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 21:10:42 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/integration/graph_decompose_pass.cc

        const std::string& function_name, const ConfigProto& config_proto,
        mlir::ModuleOp module, const Graph& graph,
        const FunctionLibraryDefinition& function_library) {
      if (GetPassState(/*device_set=*/nullptr, config_proto, graph,
                       function_library) == MlirOptimizationPassState::Disabled) {
        LOG_FIRST_N(INFO, 1) << "Skipping Graph Decomposition Pass, decomposition"
                                " library was not found";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Feb 25 16:22:36 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_invalid.mlir

    // -----
    
    // Check that tf_executor.graph does not accept any operand.
    func.func @graph_with_invalid_op(%arg0: tensor<*xf32>) {
      "tf_executor.graph" (%arg0) ({}) : (tensor<*xf32>) -> ()
    // expected-error@-1 {{'tf_executor.graph' op requires zero operands}}
      func.return
    }
    
    // -----
    
    // Check that an empty graph is invalid (it needs a region).
    func.func @empty_graph() {
     "tf_executor.graph" () ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 01:12:10 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/GraphConstants.java

      static final String EDGE_NOT_IN_GRAPH = "Edge %s is not an element of this graph.";
      static final String NODE_REMOVED_FROM_GRAPH =
          "Node %s that was used to generate this set is no longer in the graph.";
      static final String NODE_PAIR_REMOVED_FROM_GRAPH =
          "Node %s or node %s that were used to generate this set are no longer in the graph.";
      static final String EDGE_REMOVED_FROM_GRAPH =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildOperationsIntegrationTest.groovy

            taskGraphOps[0].details.buildPath == ":buildB"
            taskGraphOps[0].parentId == treeTaskGraphOps[0].id
            taskGraphOps[1].displayName == "Calculate task graph (:buildC)"
            taskGraphOps[1].details.buildPath == ":buildC"
            taskGraphOps[1].parentId == treeTaskGraphOps[0].id
            taskGraphOps[2].displayName == "Calculate task graph"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/test_util.h

    #include "tensorflow/core/graph/graph.h"
    #include "tensorflow/core/lib/core/status.h"
    #include "tensorflow/core/public/session_options.h"
    
    namespace tensorflow {
    
    // Tests that the shapes in 'shape_info' for the nodes in `graph` match
    // `expected_shapes`. Returns an error if there are nodes in `expected_shapes`
    // that do not have shape information. Ignores nodes in `graph` that do not have
    // `expected_shapes` entries.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 18:03:15 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/upgrade_graph.h

    #define TENSORFLOW_COMPILER_MLIR_TENSORFLOW_TRANSLATE_UPGRADE_GRAPH_H_
    
    #include "tensorflow/core/framework/function.h"
    #include "tensorflow/core/graph/graph.h"
    
    namespace tensorflow {
    
    class GraphDef;
    class MetaGraphDef;
    
    // Generate the shared_name for resource handle ops in the graph and functions
    // if their shared_names are empty. Resource handle ops with empty shared_name
    // may have undesired semantics.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 09:24:48 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/mlir_graph_optimization_pass.h

      // `function_library` contains function definitions for function calls in
      // `graph` not included in the `graph` FunctionLibraryDefinition.
      virtual MlirOptimizationPassState GetPassState(
          const DeviceSet* device_set, const ConfigProto& config_proto,
          const Graph& graph,
          const FunctionLibraryDefinition& function_library) const = 0;
    
      virtual Status Run(const std::string& function_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 22:53:34 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/shape_inference_helpers.h

      // Temporarily removes all the back edges in graph.
      Status Remove(Graph* graph);
    
      // Gets the list of removed edges.
      const std::vector<BackEdge>& RemovedEdges() const;
    
      // Replaces the back edges removed by a prior call to Remove.
      Status Replace();
    
     private:
      Graph* graph_ = nullptr;  // not owned
      std::vector<BackEdge> back_edges_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 12 18:06:51 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/graph/ValueGraph.java

      // ValueGraph-level accessors
      //
    
      /** Returns all nodes in this graph, in the order specified by {@link #nodeOrder()}. */
      @Override
      Set<N> nodes();
    
      /** Returns all edges in this graph. */
      @Override
      Set<EndpointPair<N>> edges();
    
      /**
       * Returns a live view of this graph as a {@link Graph}. The resulting {@link Graph} will have an
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top