Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for NodeBuilder (0.22 sec)

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

            }
        }
    
        static class GraphBuilder {
            private final Map<String, NodeBuilder> nodes = [:]
            private NodeBuilder root
    
            final Set<String> virtualConfigurations = []
    
            Collection<NodeBuilder> getNodes() {
                return nodes.values()
            }
    
            Collection<NodeBuilder> getNodesWithoutRoot() {
                def nodes = new HashSet<>()
    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. tensorflow/compiler/jit/compilability_check_util_test.cc

      auto predicate = ops::Placeholder(root.WithOpName("pred"), DT_BOOL);
      auto placeholder = ops::Placeholder(root.WithOpName("A"), DT_INT32);
      std::vector<NodeBuilder::NodeOut> if_inputs(
          {NodeBuilder::NodeOut(placeholder.node())});
      Node* if_node;
      TF_ASSERT_OK(
          NodeBuilder(kFunctionalIfNodeName, "If", &root.graph()->flib_def())
              .Input(predicate.node())
              .Input(if_inputs)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util_test.cc

      Scope root = Scope::NewRootScope().ExitOnError();
    
      Output a = ops::_Arg(root.WithOpName("A"), DT_RESOURCE, 0);
      std::vector<NodeBuilder::NodeOut> inputs({NodeBuilder::NodeOut(a.node())});
    
      Node* call;
      NameAttrList f_name_attr;
      f_name_attr.set_name(fd.signature().name());
      TF_ASSERT_OK(
          NodeBuilder("B", "StatefulPartitionedCall", &root.graph()->flib_def())
              .Input(inputs)
              .Attr("Tin", {DT_RESOURCE})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 19:51:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/scope.h

      // START_SKIP_DOXYGEN
    
      /// Update the builder with properties accumulated in this scope. Does not set
      /// status().
      // TODO(skyewm): NodeBuilder is not part of public API
      void UpdateBuilder(NodeBuilder* builder) const;
      // END_SKIP_DOXYGEN
    
      CompositeOpScopes GetCompositeOpScopes(const string& composite_op_name) const;
    
      bool ok() const;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyCycleIntegrationTest.groovy

        }
    
        protected void resolveFails(String task) {
            resolve.prepare()
            super.fails(buildA, task, arguments)
        }
    
    
        void checkGraph(@DelegatesTo(ResolveTestFixture.NodeBuilder) Closure closure) {
            resolve.expectGraph {
                root(":", "org.test:buildA:1.0", closure)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/scope.cc

        GraphDef graph_def;
        graph()->ToGraphDef(&graph_def);
        UpdateStatus(ConvertGraphDefToGraph(opts, std::move(graph_def), g));
      }
      return *impl()->status_;
    }
    
    void Scope::UpdateBuilder(NodeBuilder* builder) const {
      std::vector<Node*> control_inputs;
      for (const auto& op : impl()->control_deps_) {
        control_inputs.push_back(op.node());
      }
      builder->ControlInputs(control_inputs);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDeclaredSubstitutionsIntegrationTest.groovy

                    id("foo")
                }
            """)
    
            then:
            execute(buildA, ":buildC:dependencies")
        }
    
        void resolvedGraph(@DelegatesTo(ResolveTestFixture.NodeBuilder) Closure closure) {
            resolve.prepare()
            execute(buildA, ":checkDeps", buildArgs)
            resolve.expectGraph {
                root(":", "org.test:buildA:1.0", closure)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 14.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationMutationIntegrationTest.groovy

            failure.assertHasCause("Cannot change dependencies of dependency configuration ':conf' after it has been included in dependency resolution.")
        }
    
        void resolvedGraph(@DelegatesTo(ResolveTestFixture.NodeBuilder) Closure closure) {
            resolve.prepare()
            succeeds ":checkDeps"
    
            resolve.expectGraph {
                root(":", "org.test:root:1.1", closure)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:56 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/cc_op_gen.cc

      strings::StrAppend(&body, "  const auto unique_name = ", scope_str,
                         ".GetUniqueNameForOp(\"", op_info.op_name, "\");\n");
      strings::StrAppend(
          &body, "  auto builder = ::tensorflow::NodeBuilder(unique_name, \"",
          op_info.graph_op_def.name(), "\")\n");
      const string spaces = "                     ";
      for (int i = 0; i < op_info.api_def.in_arg_size(); ++i) {
        const auto& arg(op_info.api_def.in_arg(i));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 17:22:47 UTC 2023
    - 17K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

        }
    
        private void checkDependenciesFails() {
            resolve.prepare()
            fails(buildA, ":checkDeps", buildArgs)
        }
    
        void checkGraph(@DelegatesTo(ResolveTestFixture.NodeBuilder) Closure closure) {
            resolve.expectGraph {
                root(":", "org.test:buildA:1.0", closure)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top