Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Imcasts (0.08 sec)

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

      // tf.Cast is only inferred if it has at least one user in the TF dialect or
      // feeding into the function return. This is necessary to avoid inserting
      // casts which cannot be refined.
      if (isa<CastOp>(op)) return InferShapeForCast(op);
    
      // Handle IfOp here by inferring the shape from the else/then function
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    // LINT.IfChange
    def TFL_CastOp : TFL_Op<"cast", [
        Pure,
        SameOperandsAndResultShape]> {
      let summary = "Cast operator";
    
      let description = [{
        Casts input from input type to output type.
      }];
    
      let arguments = (ins
        TFL_TensorOf<[F16, BF16, F32, F64, I1, TFL_I4, I16, UI16, I32, UI32, I64, TFL_Quint8, UI8, I8, Complex<F<32>>]>:$input
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top