Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Indices (0.14 sec)

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

              loc, indices, swap_index, scalar_one);
    
          // Then perform the swap.
          // indices[i] <- indices[swaps[i]]
          indices = builder->create<mhlo::DynamicUpdateSliceOp>(
              loc, indices.getType(), indices, target_index, llvm::ArrayRef(i));
          // indices[swaps[i]] <- indices[i]
          indices = builder->create<mhlo::DynamicUpdateSliceOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	if i == nil {
    		i = s.constInt(types.Types[types.TINT], 0)
    	}
    	if j == nil {
    		j = len
    	}
    	three := true
    	if k == nil {
    		three = false
    		k = cap
    	}
    
    	// Panic if slice indices are not in bounds.
    	// Make sure we check these in reverse order so that we're always
    	// comparing against a value known to be nonnegative. See issue 28797.
    	if three {
    		if k != cap {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top