Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for _einsum (0.42 sec)

  1. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    #include "tensorflow/compiler/mlir/lite/utils/utils.h"
    #include "tensorflow/compiler/mlir/lite/utils/validators.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/einsum.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/unroll_batch_matmul.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/dynamic_shape_utils.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    is raised.
    
    @compatibility(numpy)
    Similar to [`numpy.einsum`](https://docs.scipy.org/doc/numpy/reference/generated/numpy.einsum.html).
    
    Comparison with `numpy.einsum`:
    
     * This Op only supports unary and binary forms of `numpy.einsum`.
     * This Op does not support implicit form. (i.e. equations without `->`).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    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/tf2xla/transforms/legalize_tf.cc

      broadcast_one_side(rhs, rhs_type, rhs_splitted.getTail(), out_rhs);
    }
    
    class ConvertBatchMatMulV2Op : public OpRewritePattern<TF::BatchMatMulV2Op> {
     public:
      // TODO(hinsu): Legalize this op to Einsum op. HLO Einsum op needs to be moved
      // to CHLO and it is missing legalization to MHLO. Once that is done, this
      // pattern's benefit can be changed back to one as well as the fallback
      // lowering pattern for the op can be removed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    // EinsumOp
    //===----------------------------------------------------------------------===//
    
    // Verifies that,
    // * Arity of the op is at most two.
    //
    // TODO(hinsu): Verify einsum equation attribute.
    LogicalResult EinsumOp::verify() {
      EinsumOp op = *this;
      if (op.getN() > 2) {
        return op.emitOpError("supports at most two operands");
      }
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  6. RELEASE.md

        `StatusOr::ConsumeValueOrDie`.
    
    ## Major Features and Improvements
    
    *   `tf.lite`:
    
        *   New operations supported:
            *   tflite SelectV2 now supports 5D.
            *   `tf.einsum` is supported with multiple unknown shapes.
            *   `tf.unsortedsegmentprod` op is supported.
            *   `tf.unsortedsegmentmax` op is supported.
            *   `tf.unsortedsegmentsum` op is supported.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      func.return %0 : tensor<?x10xf32>
    }
    
    // -----
    
    func.func @testTernaryEinsum(%arg0: tensor<2x3xf32>){
      // expected-error @+1 {{supports at most two operands}}
      %0 = "tf.Einsum"(%arg0, %arg0, %arg0) {equation = "ab,cd,ef->"} : (tensor<2x3xf32>, tensor<2x3xf32>, tensor<2x3xf32>) -> (tensor<*xf32>)
      func.return
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
Back to top