Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,632 for identity1 (0.27 sec)

  1. tensorflow/compiler/mlir/lite/tests/end2end/back2back_fake_quant.pbtxt

      }
      attr {
        key: "num_bits"
        value {
          i: 8
        }
      }
    }
    node {
      name: "sequential/quant_dense_1/iquant/IdentityN"
      op: "IdentityN"
      input: "sequential/quant_dense_1/iquant/FakeQuantWithMinMaxVars"
      input: "sequential/quant_dense/oquant/IdentityN"
      attr {
        key: "T"
        value {
          list {
            type: DT_FLOAT
            type: DT_FLOAT
          }
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 15 19:42:47 UTC 2021
    - 25.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/cast_bf16_ops_to_f32.mlir

      %3 = "tf.IdentityN"(%2) {device = ""} : (tensor<1x2xf32>) -> tensor<1x2xf32>
      return %3 : tensor<1x2xf32>
    }
    
    // CHECK: func @cast_bf16_matmul_to_fp32
    // CHECK-DAG: %[[cst:.*]] = "tf.Const"() <{value = dense<{{.*}}> : tensor<10x2xf32>}> : () -> tensor<10x2xf32>
    // CHECK: %[[matmul:.*]] = "tf.MatMul"(%arg0, %[[cst]])
    // CHECK: %[[identity:.*]] = "tf.IdentityN"(%[[matmul]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-defs.pbtxt

        }
      }
    }
    node {
      name: "Identity"
      op: "Identity"
      input: "cond"
      device: "/device:TPU_REPLICATED_CORE:0"
      attr {
        key: "T"
        value {
          type: DT_INT32
        }
      }
      attr {
        key: "_tpu_replicate"
        value {
          s: "cluster"
        }
      }
    }
    node {
      name: "Identity_1"
      op: "Identity"
      input: "cond:1"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 24 00:20:25 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tpu_identity_pruning.mlir

    // RUN: tf-opt %s -tf-tpu-identity-pruning | FileCheck %s --dump-input=always
    
    // Tests Identity op in cluster is pruned away.
    
    // CHECK-LABEL: func @testIdentity
    // CHECK-SAME: ([[ARG0:%.*]]: tensor<i32>)
    func.func @testIdentity(%arg0: tensor<i32>) {
      // CHECK-NOT:  "tf.Identity"
      // CHECK:      "tf_device.cluster"
      // CHECK-NEXT: tf_device.return [[ARG0]]
      %0 = "tf_device.cluster"() ({
        %1 = "tf.Identity"(%arg0) : (tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/device_copy.mlir

      // CHECK-NEXT: bb0(%[[ARG_3:.*]]: tensor<i32>, %[[ARG_4:.*]]: tensor<*xf32>)
      ^bb0(%arg3: tensor<i32>, %arg4: tensor<*xf32>):
        // CHECK-NEXT: %[[RESULT_1:.*]] = "tf.Identity"(%[[ARG_3]])
        %1 = "tf.Identity"(%arg3) : (tensor<i32>) -> tensor<i32>
        %2 = "tf.Identity"(%arg1) : (tensor<i32>) -> tensor<i32>
        // CHECK-NEXT: %[[RESULT_2:.*]] = "tf.NotEqual"(%[[RESULT_1]], %[[ARG_1]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-scalar-input.pbtxt

    # CHECK-SAME:  control_outputs = ""
    # CHECK-SAME:  inputs = "input"
    # CHECK-SAME:  outputs = "out:1,out"
    
    # CHECK:           tf.Relu
    # CHECK:           %[[IDENTITY:[a-z_0-9]+]]:2, {{.*}} = tf_executor.island wraps "tf.IdentityN"
    # CHECK:           etch %[[IDENTITY]]#1, %[[IDENTITY]]#0
    
    node {
      name: "input"
      op: "Placeholder"
      device: "/device:CPU:0"
      attr {
        key: "dtype"
        value {
          type: DT_FLOAT
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 24 00:20:25 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tpu_device_propagation.mlir

        // CHECK:      tf.Identity
        // CHECK-SAME: device = "/job:localhost/replica:0/task:0/device:TPU:0"
        %1:2 = tf_executor.island wraps "tf.Identity"(%0#0) : (tensor<i64>) -> tensor<i64>
        // CHECK:      tf.IdentityN
        // CHECK-SAME: device = "/job:localhost/replica:0/task:0/device:TPU:0"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 19K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/tests/convert_tpu_model_to_cpu.mlir

    // CHECK: %[[conv:.*]] = "tf.Conv2D"(%[[ARG0]], %[[cast]])
    // CHECK: %[[identity:.*]] = "tf.IdentityN"(%[[conv]]) {device = ""} : (tensor<1x3x2x2xf32>) -> tensor<1x3x2x2xf32>
    // CHECK: return %[[identity]] : tensor<1x3x2x2xf32>
    
    // -----
    
    // Tests that `tf.BatchFunction` is inlined.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. docs/sts/web-identity.py

    Harshavardhana <******@****.***> 1627436271 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jul 28 01:37:51 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  10. docs/sts/web-identity.go

    jiuker <******@****.***> 1684487613 +0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 19 09:13:33 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top