Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for resultType (0.61 sec)

  1. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        // Note that we are using the same `result_type` for both the
        // `TensorListStackOp` and `ConcatOp`, since the first dimension of the
        // shape specified by `result_type` is -1.
        auto stacked_extended_part = rewriter->create<TF::TensorListStackOp>(
            loc, result_type, extended_part,
            /*element_shape=*/CreateI32SplatConst(loc, rewriter, {}, -1),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        Type operand_type = std::get<0>(entry).getType();
        Value result = std::get<1>(entry);
        TensorType result_type = mlir::cast<TensorType>(result.getType());
        Type inferred_type = TypeMeet(result_type, operand_type);
        if (result_type == inferred_type) continue;
    
        if (!UpdateTypeAndInsertIncompatibleUseCasts(inferred_type, result))
          continue;
        changed = true;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        if (x_type != result_type) {
          x = builder.create<BroadcastInDimOp>(loc, result_type, x, broadcast_dims);
        }
        if (y_type != result_type) {
          y = builder.create<BroadcastInDimOp>(loc, result_type, y,
                                               larger_broadcast_dims);
        }
      } else {
        if (x_type != result_type) {
          x = builder.create<BroadcastInDimOp>(loc, result_type, x,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          os << operand_type;
        }
      }
      os << ") -> (";
      if (!inst->getResultTypes().empty()) {
        bool first = true;
        for (Type result_type : inst->getResultTypes()) {
          os << (!first ? ", " : "");
          first = false;
          os << result_type;
        }
      }
      os << ")";
      // Print out attributes except for large elementsattributes (which should
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  5. RELEASE.md

        *   Add ellipsis (...) support for `tf.einsum()`.
        *   Add expand_composites argument to all `nest.*` methods.
        *   Added `strings.byte_split`.
        *   Add a new "result_type" parameter to `tf.strings.split`.
        *   Add name argument to `tf.string_split` and `tf.strings_split`.
        *   Extend `tf.strings.split` to support inputs with any rank.
        *   Added `tf.random.binomial`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top