Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 95 for output_1 (0.36 sec)

  1. tensorflow/compiler/mlir/tfr/resources/test_ops.cc

    REGISTER_OP("TestThreeInputsOp")
        .Input("x: T")
        .Input("y: T")
        .Input("z: T")
        .Output("output: T")
        .Attr("T: numbertype")
        .Attr("act: {'x', 'y', 'z'} = 'z'");
    
    REGISTER_OP("TestTwoOutputsOp")
        .Input("input: T")
        .Output("output1: T")
        .Output("output2: T")
        .Attr("T: numbertype");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 07 23:35:35 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/experimental/public/signature_def_function_metadata.h

    namespace tensorflow {
    namespace experimental {
    namespace cc {
    
    // SignatureDefFunctionMetadata stores additional information on each input
    // and output's names, dtypes, and shape.
    class SignatureDefFunctionMetadata final {
      // TODO(bmzhao): Add getters here as necessary.
     private:
      friend class SignatureDefFunction;
      static SignatureDefFunctionMetadata* wrap(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  3. releasenotes/notes/dedupe-mismatch-output.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 15 14:28:49 UTC 2023
    - 247 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/invalid-output-index.pbtxt

    # RUN: not tf-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -tf-input-arrays=input -tf-input-data-types=DT_FLOAT -tf-input-shapes='' -tf-output-arrays=input:1 -o - 2>&1 | FileCheck %s
    
    # CHECK: Invalid output index 1 specified for node: input
    
    node {
      name: "input"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_FLOAT
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 10 23:27:16 UTC 2021
    - 391 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/add_dump_tensor_op.mlir

    // WholeModel-DAG: "tf.DumpTensor"(%[[output1]]) <{enabled = true, file_name = "unquantized_tensor_data.pb", func_name = "conv", log_dir_path = "/tmp/dumps/composite_conv2d_with_bias_and_relu6_fn_1", node_name = "Conv2D_1"}> : (tensor<*xf32>) -> ()
    // WholeModel-DAG: return %[[output0]], %[[output1]]
    
    // IntPerLayer-LABEL: func @conv
    // IntPerLayer-DAG: %[[w:.*]] = "tf.Const"() <{value = dense<{{\[\[\[\[}}1.600000e-01, 1.000000e-01
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/resources/org/gradle/kotlin/dsl/accessors/tasks/PrintAccessors-expected-output.txt

    Paul Merlin <******@****.***> 1690890212 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-undefined-output.pbtxt

    # RUN: not tf-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -tf-input-arrays=input -tf-input-data-types=DT_FLOAT -tf-input-shapes='' -tf-output-arrays=NotANodeInTheGraph -o - 2>&1 | FileCheck %s
    
    # CHECK: Output NotANodeInTheGraph was not found in graph
    
    node {
      name: "input"
      op: "Placeholder"
      device: "/device:CPU:0"
      attr {
        key: "dtype"
        value {
          type: DT_FLOAT
        }
      }
      attr {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 10 23:27:16 UTC 2021
    - 713 bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/internal/saved_model_api_test.cc

      const TF_TensorSpec* tensor_spec_out =
          TF_SignatureDefParamTensorSpec(param_out);
      const TF_Shape* shape_out = TF_TensorSpecShape(tensor_spec_out);
    
      // Output "output_0" is a scalar, float32 tensor
      EXPECT_EQ("output_0", std::string(TF_SignatureDefParamName(param_out)));
      EXPECT_EQ(TF_FLOAT, TF_TensorSpecDataType(tensor_spec_out));
      EXPECT_EQ(0, TF_ShapeDims(shape_out));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 08:08:45 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/multi-output-feeds.pbtxt

      input: "z:1"
      input: "z:2"
      attr {
        key: "T"
        value {
          type: DT_FLOAT
        }
      }
    }
    versions {
      producer: 230
    }
    
    # Test non zero index output tensors as feeds. Original ops where their outputs
    # are replaced with feeds are preserved and args and rets are lifted to the
    # function. Rets that happen to coincide with a feed should have its value be
    # of the feed.
    #
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/output-shapes-attr.mlir

    // RUN: tf-mlir-translate -mlir-to-graphdef %s -o - | FileCheck %s
    
    func.func @main(%arg0: tensor<10xi32>) -> tensor<10xi32>
    attributes {tf.entry_function = {inputs = "input0", outputs = "output0"}} {
      %graph = tf_executor.graph {
        tf_executor.fetch %arg0 : tensor<10xi32>
      }
      func.return %graph : tensor<10xi32>
    }
    
    // CHECK:      node {
    // CHECK-NEXT:   name: "input0"
    // CHECK-NEXT:   op: "_Arg"
    // CHECK:          key: "T"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top