Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PadOp (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

                               ConstOp::getOperationName(),
                               ConcatV2Op::getOperationName(),
                               AddV2Op::getOperationName(),
                               PadOp::getOperationName(),
                               SplitOp::getOperationName(),
                               UnpackOp::getOperationName(),
                               DivOp::getOperationName(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

          auto padding_const =
              rewriter.create<TF::ConstOp>(op->getLoc(), padding_attr);
    
          // Add Pad op.
          auto pad_output_type = UnrankedTensorType::get(elem_type);
          input = rewriter.create<TF::PadOp>(op->getLoc(), pad_output_type, input,
                                             padding_const);
    
          // Set Conv padding to `VALID` since padding has been handled by Pad op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
Back to top