Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RIGHT_LEFT (0.12 sec)

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

      "$_builder.getStringAttr(\"" # x # "\")">;
    
    def MatrixSetDiagToV3 : Pat<
      (TF_MatrixSetDiagOp:$src $input, $diag),
      (TF_MatrixSetDiagV3Op:$dest $input, $diag, (TF_ConstOp (GetI32Attr<0>)),
        (GetStrAttr<"RIGHT_LEFT">)),
      [], [(CopyAttrs $src, $dest)]>;
    
    // MatrixSetDiagToV2 op implicitly used LEFT_LEFT alignment.
    def MatrixSetDiagV2ToV3 : Pat<
      (TF_MatrixSetDiagV2Op:$src $input, $diag, $k),
    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/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        // CHECK: mhlo.reshape
        // CHECK: mhlo.concatenate
        // CHECK: mhlo.gather
        // CHECK: mhlo.broadcast
        // CHECK: mhlo.select
        %2 = "tf.MatrixDiagPartV3"(%arg0, %1, %0) {
            T = i32, align = "RIGHT_LEFT"
        } : (tensor<7x140x128xi32>, tensor<2xi32>, tensor<i32>) -> tensor<7x22x128xi32>
        func.return %2: tensor<7x22x128xi32>
      }
    
      // CHECK-LABEL: func @xla_call_module
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (1)
Back to top