Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for InvertPermutationOp (0.55 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config.cc

        TypeID::get<TF::GatherV2Op>(),
        TypeID::get<TF::GreaterEqualOp>(),
        TypeID::get<TF::IdentityOp>(),
        TypeID::get<TF::IdentityNOp>(),
        TypeID::get<TF::InplaceUpdateOp>(),
        TypeID::get<TF::InvertPermutationOp>(),
        TypeID::get<TF::IRFFTOp>(),
        TypeID::get<TF::L2LossOp>(),
        TypeID::get<TF::LegacyCallOp>(),
        TypeID::get<TF::LessEqualOp>(),
        TypeID::get<TF::LinSpaceOp>(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    //
    class LowerInvertPermutationOp : public RewritePattern {
     public:
      explicit LowerInvertPermutationOp(MLIRContext *context)
          : RewritePattern(
                InvertPermutationOp::getOperationName(), 1, context,
                {ConstOp::getOperationName(), RangeOp::getOperationName(),
                 ReshapeOp::getOperationName(),
                 TensorScatterUpdateOp::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)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      }
    }
    
    //===----------------------------------------------------------------------===//
    // InvertPermutationOp
    //===----------------------------------------------------------------------===//
    
    // Verifies that the input is 1D.
    LogicalResult InvertPermutationOp::verify() {
      InvertPermutationOp op = *this;
      auto x_type = mlir::cast<TensorType>(op.getX().getType());
      if (!x_type.hasRank()) 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)
Back to top