Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 378 for placeholders (0.19 sec)

  1. tensorflow/compiler/mlir/lite/tests/optimize_functional_ops.mlir

    // CHECK-LABEL: main
    func.func @main(%arg0: tensor<f32>, %arg1: tensor<f32>) -> (tensor<f32>) {
      // CHECK: %[[INPUT0:.*]] = "tf.Placeholder.input"
      %0 = "tf.Placeholder.input"(%arg0) : (tensor<f32>) -> tensor<f32>
      // CHECK: %[[INPUT1:.*]] = "tf.Placeholder.input"
      %1 = "tf.Placeholder.input"(%arg1) : (tensor<f32>) -> tensor<f32>
      %2 = arith.constant dense<true> : tensor<i1>
    
      // CHECK: "tf.Add"(%[[INPUT0]], %[[INPUT1]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 10:34:48 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  2. samples/ambient-argo/meta-application.yaml

    spec:
      destination:
        name: in-cluster
        namespace: argocd
        server: ''
      sources:
      - path: istio
        repoURL: '{repo-placeholder}'
        targetRevision: HEAD
      - path: application
        repoURL: '{repo-placeholder}'
        targetRevision: HEAD
        directory:
          include: application.yaml
      project: default
      syncPolicy:
        automated:
          prune: true
          selfHeal: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 630 bytes
    - Viewed (0)
  3. refactorings/TraverserRewrite.java

    import com.google.errorprone.refaster.annotation.Placeholder;
    
    /**
     * Refaster rules to rewrite usages of {@code com.google.common.collect.TreeTraverser} in terms of
     * {@code com.google.common.graph.Traverser}.
     */
    @SuppressWarnings("DefaultPackage")
    public class TraverserRewrite {
      abstract class TreeTraverserPreOrder<N> {
        @Placeholder
        abstract Iterable<N> getChildren(N node);
    
        @BeforeTemplate
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 20 18:51:33 UTC 2020
    - 3K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/manip_grad_test.cc

        EXPECT_LT(max_error, 1e-4);
      }
    
      Scope scope_;
    };
    
    TEST_F(ManipGradTest, RollGrad) {
      TensorShape shape({5, 4, 3});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape));
      auto y = Roll(scope_, x, {2, 1}, {0, 1});
      RunTest(x, shape, y, shape);
    }
    
    }  // namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 19 12:19:42 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/output-shapes-attr.pbtxt

    node {
      name: "input0"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_INT32
        }
      }
    }
    versions {
      producer: 29
      min_consumer: 12
    }
    
    # Verify that functions from the library are properly imported.
    
    # CHECK-LABEL:  func @main() {
    # CHECK:    "tf.Placeholder"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 24 00:20:25 UTC 2020
    - 426 bytes
    - Viewed (0)
  6. tensorflow/cc/gradients/README.md

        example:
    
        ```
        TEST_F(ArrayGradTest, IdentityGrad) {
          TensorShape shape({5, 2});
          auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(shape));
          auto y = Identity(scope_, x);
          RunTest(x, shape, y, shape);
        }
        ```
    
    NOTE: There are some ops that require features from the C++ API that are not yet
    implemented.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 29 19:12:55 UTC 2021
    - 2K bytes
    - Viewed (0)
  7. tensorflow/cc/client/client_session_test.cc

    TEST(ClientSessionTest, CallableWithCustomThreadPool) {
      Scope root = Scope::NewRootScope();
      int num_threads = 3;
    
      TensorShape data_shape({1, 1});
      auto a = Placeholder(root, DT_INT32, Placeholder::Shape(data_shape));
      auto b = Placeholder(root, DT_INT32, Placeholder::Shape(data_shape));
      auto c = BatchMatMul(root, a, b);
      ClientSession session(root);
      std::vector<Tensor> outputs;
    
      auto inter_op_threadpool =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/compilability_check_util_test.cc

      TF_ASSERT_OK(root.graph()->AddFunctionLibrary(flib));
      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())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/mvnsettings/DefaultLocalMavenRepositoryLocator.java

            while (matcher.find()) {
                String placeholder = matcher.group(1);
                String replacement = placeholder.startsWith("env.") ? system.getEnv(placeholder.substring(4)) : system.getProperty(placeholder);
                if (replacement == null) {
                    throw new CannotLocateLocalMavenRepositoryException(String.format("Cannot resolve placeholder '%s' in value '%s'", placeholder, value));
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/tensorflow_issue_template.yaml

          label: TensorFlow version
          placeholder: e.g., tf 2.8
        validations:
          required: true
      - type: dropdown
        id: Code
        attributes:
          label: Custom code
          options:
            - "Yes"
            - "No"
        validations:
          required: true
      - type: input
        id: OS
        attributes:
          label: OS platform and distribution
          placeholder: e.g., Linux Ubuntu 16.04
      - type: input
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 28 18:25:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top