Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Dtype (0.03 sec)

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

        rewriter.replaceOpWithNewOp<mhlo::ReturnOp>(op, adaptor.getOperands());
        return success();
      }
    };
    
    // Returns a new tensor type from the given type with element type updated to
    // the given type.
    TensorType UpdateElementTypeTo(Type ty, Type element_ty) {
      auto ranked_ty = mlir::dyn_cast<RankedTensorType>(ty);
      if (!ranked_ty) {
        return UnrankedTensorType::get(element_ty);
      }
    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