Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for ellipsis_mask (0.14 sec)

  1. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    }
    
    table SplitOptions {
      num_splits: int;
    }
    
    table SplitVOptions {
      num_splits: int;
    }
    
    table StridedSliceOptions {
      begin_mask: int;
      end_mask: int;
      ellipsis_mask: int;
      new_axis_mask: int;
      shrink_axis_mask: int;
    }
    
    table LogSoftmaxOptions {
    }
    
    table CastOptions {
      in_data_type: TensorType;
      out_data_type: TensorType;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema.fbs

    }
    
    table SplitOptions {
      num_splits: int;
    }
    
    table SplitVOptions {
      num_splits: int;
    }
    
    table StridedSliceOptions {
      begin_mask: int;
      end_mask: int;
      ellipsis_mask: int;
      new_axis_mask: int;
      shrink_axis_mask: int;
      // If true, then the end tensor is an offset of the begin tensor.
      offset: bool;
    }
    
    table LogSoftmaxOptions {
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/constant-fold.mlir

      %one = "tf.Const"() {value = dense<1> : tensor<4xi32>} : () -> tensor<4xi32>
      // CHECK: tf.StridedSlice
      %0 = "tf.StridedSlice"(%input, %zero, %one, %one) {begin_mask = 15 : i64, device = "", ellipsis_mask = 0 : i64, end_mask = 0 : i64, new_axis_mask = 0 : i64, shrink_axis_mask = 0 : i64} : (tensor<1024x1024x1024x1024xf32>, tensor<4xi32>, tensor<4xi32>, tensor<4xi32>) -> tensor<*xf32>
    
      func.return %0 : tensor<*xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 31 23:22:24 UTC 2024
    - 36.7K bytes
    - Viewed (0)
Back to top