Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ComplexType (0.2 sec)

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

        auto rhs_type = mlir::dyn_cast<RankedTensorType>(rhs.getType());
        if (!lhs_type || !rhs_type) return failure();
        if (mlir::isa<ComplexType>(lhs_type.getElementType()) && op.getAdjX()) {
          lhs = rewriter.create<TF::ConjOp>(op.getLoc(), lhs_type, lhs);
        }
        if (mlir::isa<ComplexType>(rhs_type.getElementType()) && op.getAdjY()) {
          rhs = rewriter.create<TF::ConjOp>(op.getLoc(), rhs_type, rhs);
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top