Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for identityfunc (0.34 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/prepare_tpu_computation_for_tf_export.mlir

      func.return %0, %1 : tensor<f32>, tensor<f32>
    }
    
    
    // Next four functions are used to verify handling of a call chain.
    
    // CHECK-LABEL: func @IdentityFunc
    func.func @IdentityFunc(%arg0: tensor<i32>) -> tensor<i32> {
      // CHECK-NOT: _xla_token_input_nodes
      %1 = "tf.Identity"(%arg0) : (tensor<i32>) -> tensor<i32>
      func.return %1 : tensor<i32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 18:46:36 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // -----
    
    func.func @identity_func(%arg0: tensor<10x2xf32>) -> tensor<10x2xf32> {
      func.return %arg0: tensor<10x2xf32>
    }
    
    // CHECK-LABEL: testSimpleLegacyCallOp
    func.func @testSimpleLegacyCallOp(%arg0: tensor<10x2xf32>) -> tensor<10x2xf32> {
      // CHECK: %[[RESULT:.*]] = call @identity_func(%arg0) : (tensor<10x2xf32>) -> tensor<10x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
Back to top