Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 351 for _Graph (0.24 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

         * the DSL supplied as an argument.
         *
         * @param closure a closure containing DSL that configures the expected graph
         */
        void expectGraph(@DelegatesTo(GraphBuilder) Closure closure) {
            def graph = new GraphBuilder()
            closure.resolveStrategy = Closure.DELEGATE_ONLY
            closure.delegate = graph
            closure.call()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/node/node_authorizer.go

    type NodeAuthorizer struct {
    	graph      *Graph
    	identifier nodeidentifier.NodeIdentifier
    	nodeRules  []rbacv1.PolicyRule
    
    	// allows overriding for testing
    	features featuregate.FeatureGate
    }
    
    var _ = authorizer.Authorizer(&NodeAuthorizer{})
    var _ = authorizer.RuleResolver(&NodeAuthorizer{})
    
    // NewAuthorizer returns a new node authorizer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass_test.cc

      GraphOptimizationPassOptions options;
      options.graph = &graph;
      options.device_set = device_set.get();
      options.session_options = &session_options;
    
      // Scope::ToGraph seems to drop assigned devices, probably because it goes
      // through a GraphDef.  So explicitly maintain the device assignment.
      std::unordered_map<string, string> assigned_device_names;
      for (Node* n : s.graph()->nodes()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

    //   changed |= tryMergedIslandsIntoNearestProducer();
    // }
    //
    class CoarseningAnalysis {
     public:
      // Compute the coarsening analysis over the given graph.
      explicit CoarseningAnalysis(GraphOp graph);
    
      // Returns a list of all of the mergable islands found in the graph.
      iterator_range<
          llvm::filter_iterator<SmallVector<MergedIsland>::const_iterator,
                                function_ref<bool(const MergedIsland&)>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    }
    
    // newTrimmedGraph creates a graph for this report, trimmed according
    // to the report options.
    func (rpt *Report) newTrimmedGraph() (g *graph.Graph, origCount, droppedNodes, droppedEdges int) {
    	o := rpt.options
    
    	// Build a graph and refine it. On each refinement step we must rebuild the graph from the samples,
    	// as the graph itself doesn't contain enough information to preserve full precision.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tpu_validate_inputs.mlir

        tf_executor.fetch %0 : tensor<i32>
      }
      return %0 : tensor<i32>
    }
    
    
    // -----
    
    func.func @single_core_tpu(%arg0: tensor<i32>) -> () {
      tf_executor.graph {
        // expected-error @+1 {{found a single-core TPU graph}}
        tf_executor.island wraps "tf.Identity"(%arg0) {_xla_compile_device_type = "TPU"} : (tensor<i32>) -> tensor<i32>
         tf_executor.fetch
      }
      return
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. tensorflow/c/c_api_experimental.cc

      assert(session);
      {
        tensorflow::mutex_lock c(session->graph->mu);
        VLOG(1) << "Dequeuing named tensor with id " << tensor_id
                << ", with input graph: "
                << session->graph->graph.ToGraphDefDebug().DebugString();
      }
    
      TF_Operation* dequeue_op = TF_GraphOperationByName(
          session->graph,
          tensorflow::strings::StrCat("fifo_queue_dequeue_", tensor_id).c_str());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/scope.h

      bool ok() const;
    
      // TODO(skyewm): Graph is not part of public API
      Graph* graph() const;
    
      // TODO(skyewm): Graph is not part of public API
      std::shared_ptr<Graph> graph_as_shared_ptr() const;
    
      Status status() const;
    
      /// If status() is ok, convert the Graph object stored in this scope
      /// to a GraphDef proto and return an ok Status. Otherwise, return the error
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/BUILD

    # This test uses an incompleted graph with a node that is not defined. The
    # compilation works because the undefined node is a feed node.
    tf_library(
        name = "test_graph_tfadd",
        testonly = 1,
        config = "test_graph_tfadd.config.pbtxt",
        cpp_class = "AddComp",
        graph = "test_graph_tfadd.pbtxt",
        mlir_components = "None",
        tags = [
            "manual",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

    import org.gradle.internal.serialize.graph.CircularReferences
    import org.gradle.internal.serialize.graph.Codec
    import org.gradle.internal.serialize.graph.IsolateOwner
    import org.gradle.internal.serialize.graph.ReadContext
    import org.gradle.internal.serialize.graph.ReadIdentities
    import org.gradle.internal.serialize.graph.ReadIsolate
    import org.gradle.internal.serialize.graph.Tracer
    import org.gradle.internal.serialize.graph.WriteContext
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top