Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for PlaceholderWithDefault (0.72 sec)

  1. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

      // CHECK-LABEL: CheckNumerics
      // CHECK:  return %arg0 : tensor<3xf32>
    }
    
    func.func @placeholder_with_default(%arg0: tensor<3xf32>) -> tensor<3xf32> {
      %0 = "tf.PlaceholderWithDefault"(%arg0): (tensor<3xf32>) -> tensor<3xf32>
      func.return %0 : tensor<3xf32>
      // Should be converted to Identity and then from Identity to value
      // CHECK-LABEL: placeholder_with_default
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let arguments = (ins
      );
    
      let results = (outs
        TF_Tensor:$output
      );
    
      TF_DerivedResultTypeAttr dtype = TF_DerivedResultTypeAttr<0>;
    }
    
    def TF_PlaceholderWithDefaultOp : TF_Op<"PlaceholderWithDefault", [Pure]> {
      let summary = "Placeholder op";
    
      let description = [{
        A placeholder op that passes through input when its output is not fed.
      }];
    
      let arguments = (ins
        TF_Tensor:$input
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                "_UnaryOpsComposition", "CollectiveReduceV2",
                "CollectiveAssignGroupV2",
                // The following 5 operations are converted to identity
                "PlaceholderWithDefault", "PreventGradient", "StopGradient",
                "Snapshot", "_EagerConst"}},
              // clang-format off
        {"RED",
         {"All", "Any", "Min", "Max", "Mean", "Prod", "Sum"}},
              // clang-format on
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // control dependencies are not to be executed. For single output nodes,
      // Placeholders can be converted to a NoOp if there are no uses, and
      // PlaceholderWithDefault can be converted to an Identity.
      for (const auto* edge : control_edges) {
        graph_->AddControlEdge(placeholder_node, edge->dst());
        graph_->RemoveControlEdge(edge);
      }
    
      if (update_inplace) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top