Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for LEFT_LEFT (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/canonicalize.td

        (GetStrAttr<"RIGHT_LEFT">)),
      [], [(CopyAttrs $src, $dest)]>;
    
    // MatrixSetDiagToV2 op implicitly used LEFT_LEFT alignment.
    def MatrixSetDiagV2ToV3 : Pat<
      (TF_MatrixSetDiagV2Op:$src $input, $diag, $k),
      (TF_MatrixSetDiagV3Op:$dest $input, $diag, $k, (GetStrAttr<"LEFT_LEFT">)),
      [], [(CopyAttrs $src, $dest)]>;
    
    //===----------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:42:28 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      func.return %0 : tensor<3x3xi64>
    
      // CHECK: %[[RES:.*]] = "tf.MatrixSetDiagV3"(%arg0, %arg1, %arg2)
      // CHECK-SAME: <{align = "LEFT_LEFT"}> {device = "/job:localhost/replica:0/task:0/device:GPU:0"}
    }
    
    // CHECK-LABEL: @testVariableToVariableV2
    func.func @testVariableToVariableV2() {
      // CHECK-NOT: "tf.Variable"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          superdiagonal_align = kRight;
          subdiagonal_align = kRight;
        } else if (align == "LEFT_RIGHT") {
          superdiagonal_align = kLeft;
          subdiagonal_align = kRight;
        } else if (align == "LEFT_LEFT") {
          superdiagonal_align = kLeft;
          subdiagonal_align = kLeft;
        } else {
          return failure();  // unsupported alignment
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      %0 = mhlo.constant dense<42> : tensor<i32>  // padding value
      %1 = mhlo.constant dense<[-10, 11]> : tensor<2xi32>  // k
      %2 = "tf.MatrixDiagPartV3"(%arg0, %1, %0) {
          T = i32, align = "LEFT_LEFT"
      } : (tensor<7x140x128xi32>, tensor<2xi32>, tensor<i32>) -> tensor<7x22x128xi32>
      // CHECK: %[[false:.*]] = mhlo.constant dense<false> : tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Arg<TF_Tensor, [{The value to fill the area outside the specified diagonal band with.
    Default is 0.}]>:$padding_value,
    
        DefaultValuedOptionalAttr<TF_AnyStrAttrOf<["LEFT_RIGHT", "RIGHT_LEFT", "LEFT_LEFT", "RIGHT_RIGHT"]>, "\"RIGHT_LEFT\"">:$align
      );
    
      let results = (outs
        Res<TF_Tensor, [{The extracted diagonal(s).}]>:$diagonal
      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
    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