Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TensorListPopBackOp (0.33 sec)

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

    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    struct ConvertTensorListPopBack
        : public OpRewritePattern<TF::TensorListPopBackOp> {
      using OpRewritePattern::OpRewritePattern;
    
      LogicalResult matchAndRewrite(TF::TensorListPopBackOp op,
                                    PatternRewriter& rewriter) const override {
        // It is currently not possible to easily pack the output of a multi-result
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

      (*buffer_to_size)[new_buffer] = {new_size, /*fixed=*/false};
      push.erase();
      return success();
    }
    
    LogicalResult HandleTensorListPopBackOp(
        TF::TensorListPopBackOp pop,
        llvm::SmallDenseMap<Value, SizeInfo>* buffer_to_size) {
      auto buffer = pop.getInputHandle();
      auto it = buffer_to_size->find(buffer);
      if (it == buffer_to_size->end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

          GET_OPERATION_NAME(mlir::TF::TensorListReserveOp),
          GET_OPERATION_NAME(mlir::TF::TensorListFromTensorOp),
          GET_OPERATION_NAME(mlir::TF::TensorListPushBackOp),
          GET_OPERATION_NAME(mlir::TF::TensorListPopBackOp),
          GET_OPERATION_NAME(mlir::TF::TensorListGetItemOp),
          GET_OPERATION_NAME(mlir::TF::TensorListSetItemOp),
          GET_OPERATION_NAME(mlir::TF::TensorListLengthOp),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    bool ShapeInference::InferShapeForTensorListPopBackOp(TensorListPopBackOp op) {
      // The first Operand is assumed to be a TensorType around a variant with a
      // single subtype (e.g. tensor<!tf_type.variant<tensor<2xi32>>>). We will
      // copy this type to the first result, and copy the singular variant subtype
      // to the second result (tensor<2xi32>).
      DCOMMENT_OP(op, "Inferring shape for TensorListPopBackOp.");
    
      auto src_list_handle_t =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top