Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for PlaceholderWithDefault (0.25 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/derived_shape_attr.mlir

    // Check that attributes that define derived shapes are exported.
    
    // CHECK: op: "PlaceholderWithDefault"
    // CHECK: shape
    // CHECK: unknown_rank: true
    // CHECK: name: "static"
    // CHECK: op: "PlaceholderWithDefault"
    // CHECK: shape {
    // CHECK-NEXT: }
    // CHECK: name: "static_10"
    // CHECK: op: "PlaceholderWithDefault"
    // CHECK: shape
    // CHECK: dim
    // CHECK: size: 10
    
    func.func @main() {
      tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/end2end/graph_with_placeholder_with_default.pbtxt

          tensor {
            dtype: DT_INT32
            tensor_shape {
            }
            int_val: 0
          }
        }
      }
      experimental_debug_info {
      }
    }
    node {
      name: "unranked"
      op: "PlaceholderWithDefault"
      input: "tf.Const1"
      attr {
        key: "dtype"
        value {
          type: DT_INT32
        }
      }
      attr {
        key: "shape"
        value {
          shape {
            unknown_rank: true
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/tests/keras_imagenet_main.golden_summary

    Clustered nodes: 2725
    Unclustered nodes: 606
    Number of clusters: 2
    
    unclustered size 606
     AssignAddVariableOp 1
     Const 108
     DivNoNan 1
     Identity 2
     Merge 53
     PlaceholderWithDefault 1
     ReadVariableOp 2
     Switch 1
     _Arg 435
     _Retval 2
    cluster 0 size 1910
     Add 16
     AddN 71
     ArgMax 1
     AssignAddVariableOp 1
     BiasAdd 1
     BiasAddGrad 1
     Cast 115
     Const 407
     Conv2D 53
     Conv2DBackpropFilter 53
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 06 10:38:14 UTC 2023
    - 874 bytes
    - Viewed (0)
  4. tensorflow/cc/framework/fuzzing/op_fuzzing.bzl

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/jit/tests/keras_imagenet_main.pbtxt

      attr {
        key: "dtype"
        value {
          type: DT_FLOAT
        }
      }
    }
    node {
      name: "keras_learning_phase"
      op: "PlaceholderWithDefault"
      input: "keras_learning_phase/input"
      device: "/job:localhost/replica:0/task:0/device:GPU:0"
      attr {
        key: "dtype"
        value {
          type: DT_BOOL
        }
      }
      attr {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 02:52:54 UTC 2019
    - 1.3M bytes
    - Viewed (0)
Back to top