Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for sizeType (0.11 sec)

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

        auto begin_type = mlir::dyn_cast<RankedTensorType>(begin_indices.getType());
        auto size_type = mlir::dyn_cast<RankedTensorType>(sizes.getType());
    
        if (!input_ty || !begin_type || !size_type ||
            !begin_type.hasStaticShape() || !size_type.hasStaticShape() ||
            begin_type.getRank() != 1 || size_type.getRank() != 1) {
          return failure();
        }
    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