Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for dynamic_slice (0.13 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        Type start_indices_element_type =
            mlir::cast<ShapedType>(op.getStartIndices().front().getType())
                .getElementType();
    
        // The mhlo dynamic_slice's start_indices can be either signed/unsigned
        // int32/int64. However, TF only takes in either i32 or i64 types for begin,
        // so we will always put a cast.
        Type signed_start_indices_element_type;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    }
    
    def TF_XlaDynamicSliceOp : TF_Op<"XlaDynamicSlice", [Pure, TF_NoConstantFold]> {
      let summary = "Wraps the XLA DynamicSlice operator, documented at";
    
      let description = [{
    https://www.tensorflow.org/performance/xla/operation_semantics#dynamicslice
    .
    
    DynamicSlice extracts a sub-array from the input array at dynamic
    start_indices. The size of the slice in each dimension is passed in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top