Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 753 for indices (0.32 sec)

  1. test/slice3err.go

    	_ = array[3:1:2] // ERROR "invalid slice index|invalid slice indices|inverted slice"
    	_ = array[3:2:1] // ERROR "invalid slice index|invalid slice indices|inverted slice"
    	_ = array[i:1:2]
    	_ = array[i:2:1] // ERROR "invalid slice index|invalid slice indices|inverted slice"
    	_ = array[1:j:2]
    	_ = array[2:j:1] // ERROR "invalid slice index|invalid slice indices"
    	_ = array[1:2:k]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 21:28:48 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/grad_helper.cc

      // merge these 1s (using axes for indices) to the correct
      // position in the result.
      // axes_ones = [1, 1]
      auto axes_ones = OnesLike(scope, axes);
    
      // using DynamicStitch:
      // indices = { input_rank_range, axes }
      //         = { [0, 1, 2, 3], [1, 2] }
      // data = { input_shape, axes_ones }
      //      = { [2, 3, 5, 7], [1, 1] }
      // The input_rank_range entry in indices first replicates the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 07 23:11:54 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/structured/namedresources/namedresourcesmodel.go

    	indices, err := c.allocate(ctx, model)
    	return len(indices) == len(c.requests), err
    }
    
    func (c *Controller) Allocate(ctx context.Context, model Model) ([]*resourceapi.NamedResourcesAllocationResult, error) {
    	indices, err := c.allocate(ctx, model)
    	if err != nil {
    		return nil, err
    	}
    	if len(indices) != len(c.requests) {
    		return nil, errors.New("insufficient resources")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:26:16 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_sync.td

      let summary = "get a tensor in resource array";
    
      let description = [{
        Get a tensor in resource array.
    
        indices: the indices in the resource array.
        results: the tensor values for the corresponding indices.
      }];
    
      let arguments = (ins
        I64ArrayAttr:$indices
      );
    
      let results = (outs
        Variadic<TFTensorType>:$results
      );
    
      let assemblyFormat = "attr-dict `:` type($results)";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 07 21:12:01 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. src/go/internal/typeparams/typeparams.go

    	case *ast.IndexExpr:
    		return &IndexExpr{
    			Orig:    e,
    			X:       e.X,
    			Lbrack:  e.Lbrack,
    			Indices: []ast.Expr{e.Index},
    			Rbrack:  e.Rbrack,
    		}
    	case *ast.IndexListExpr:
    		return &IndexExpr{
    			Orig:    e,
    			X:       e.X,
    			Lbrack:  e.Lbrack,
    			Indices: e.Indices,
    			Rbrack:  e.Rbrack,
    		}
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/index/suffixarray/suffixarray.go

    		// indices in the first place (if it returned fewer than that then
    		// there cannot be more).
    		for n1 := n; ; n1 += 2 * (n - len(result)) /* overflow ok */ {
    			indices := x.Lookup(lit, n1)
    			if len(indices) == 0 {
    				return
    			}
    			slices.Sort(indices)
    			pairs := make([]int, 2*len(indices))
    			result = make([][]int, len(indices))
    			count := 0
    			prev := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/typeparams/common.go

    		return e.X, e.Lbrack, e.Indices, e.Rbrack
    	}
    	return nil, token.NoPos, nil, token.NoPos
    }
    
    // PackIndexExpr returns an *ast.IndexExpr or *ast.IndexListExpr, depending on
    // the cardinality of indices. Calling PackIndexExpr with len(indices) == 0
    // will panic.
    func PackIndexExpr(x ast.Expr, lbrack token.Pos, indices []ast.Expr, rbrack token.Pos) ast.Expr {
    	switch len(indices) {
    	case 0:
    		panic("empty indices")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. test/fixedbugs/issue4251.go

    func F1(s []byte) []byte {
    	return s[2:1]		// ERROR "invalid slice index|inverted slice range|invalid slice indices"
    }
    
    func F2(a [10]byte) []byte {
    	return a[2:1]		// ERROR "invalid slice index|inverted slice range|invalid slice indices"
    }
    
    func F3(s string) string {
    	return s[2:1]		// ERROR "invalid slice index|inverted slice range|invalid slice indices"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 23:59:57 UTC 2020
    - 602 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.cc

      // Permute updates if `update_window_dims` are leading indices.
      // Other possibilities for `update_window_dims` are not supported yet.
      if (!IsIotaAttr(update_window_dims, update_window_dims.size()))
        return rewriter.notifyMatchFailure(
            scatter_op, "update_window_dims are not leading or trailing indices");
    
      SmallVector<int64_t, 4> permutation_array(updates_type.getRank());
      int64_t dim = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 02:29:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DefaultAttributeMatcher.java

            }
    
            public static <T extends HasAttributes> List<T> getMatchesFromCandidateIndices(int[] indices, List<? extends T> candidates) {
                if (indices.length == 0) {
                    return Collections.emptyList();
                }
    
                List<T> matches = new ArrayList<>(indices.length);
                for (int index : indices) {
                    matches.add(candidates.get(index));
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top