Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for _UnaryOpsComposition (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      %0 = "tf.ScatterNd"(%arg0, %arg1, %shape) : (tensor<4x1xi32>, tensor<4xf32>, tensor<1xi32>) -> tensor<8xf32>
      func.return %0 : tensor<8xf32>
    }
    
    // CHECK-LABEL: @_UnaryOpsComposition
    // CHECK-SAME: %[[ARG0:.*]]: tensor<4xf32>
    func.func @_UnaryOpsComposition(%arg0: tensor<4xf32>) -> tensor<4xf32> {
    
      // CHECK: %[[RESULT0:.*]] = "tf.Asin"(%[[ARG0]])
      // CHECK: %[[RESULT1:.*]] = "tf.Abs"(%[[RESULT0]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

            op.getTransposeA(), op.getTransposeB());
    
        rewriter.replaceOp(op, {result});
        return success();
      }
    };
    
    // Lowers _UnaryOpsComposition op as a series of original TensorFlow ops that
    // were fused together.
    class Lower_UnaryOpsComposition
        : public OpRewritePattern<_UnaryOpsCompositionOp> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                "LeakyReluGrad", "Elu", "EluGrad", "Selu", "SeluGrad", "Select",
                "SelectV2", "Transpose", "ConjugateTranspose",
                "_UnaryOpsComposition", "CollectiveReduceV2",
                "CollectiveAssignGroupV2",
                // The following 5 operations are converted to identity
                "PlaceholderWithDefault", "PreventGradient", "StopGradient",
    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/ir/tf_generated_ops.td

      TF_DerivedOperandSizeAttr NumDynamicShapes = TF_DerivedOperandSizeAttr<0>;
      TF_DerivedResultSizeAttr num_computations = TF_DerivedResultSizeAttr<1>;
    }
    
    def TF__UnaryOpsCompositionOp : TF_Op<"_UnaryOpsComposition", [Pure, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = [{
    *NOTE*: Do not invoke this operator directly in Python. Graph rewrite pass is
      }];
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top