Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for XlaEinsum (0.09 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

    // reshapes in many cases. More precisely, this function creates 1s matrix
    // with appropriate shape to match with the shape of XlaDotV2 result.
    // We didn't apply XlaEinsum or XlaDotV2 for this work, since it would loose
    // the chance for constant folding later. We could try to add some
    // postprocessing passes later to further optimize the graph after constant
    // folding.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    //===----------------------------------------------------------------------===//
    // tf.XlaEinsum legalization
    //===----------------------------------------------------------------------===//
    
    // -----
    
    // CHECK-LABEL: func @xlaeinsum
    func.func @xlaeinsum(%arg0: tensor<2x3xf32>, %arg1: tensor<3x4xf32>) -> tensor<2x4xf32> {
      // CHECK-NEXT:  mhlo.einsum
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
      TF_DerivedOperandTypeAttr Tindices = TF_DerivedOperandTypeAttr<2>;
    }
    
    def TF_XlaEinsumOp : TF_Op<"XlaEinsum", [Pure, TF_NoConstantFold]> {
      let summary = [{
    An op which supports basic einsum op with 2 inputs and 1 output.
      }];
    
      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