Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 198 for Indexes (0.33 sec)

  1. tensorflow/compiler/mlir/lite/utils/utils.h

        ShapedType input_type, ShapedType output_type) {
      ArrayRef<int64_t> in_shape = input_type.getShape();
      ArrayRef<int64_t> out_shape = output_type.getShape();
    
      // Get the indexes of the non-identity dimensions and the identity dimensions
      // in the input shape.
      SmallVector<int32_t> input_nonidentity_dims_index_array;
      SmallVector<int32_t> input_identity_dims_index_array;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    		if err != nil {
    			return nil, err
    		}
    		return objIndexFunc(seo)
    	}
    }
    
    func storeElementIndexers(indexers *cache.Indexers) cache.Indexers {
    	if indexers == nil {
    		return cache.Indexers{}
    	}
    	ret := cache.Indexers{}
    	for indexName, indexFunc := range *indexers {
    		ret[indexName] = storeElementIndexFunc(indexFunc)
    	}
    	return ret
    }
    
    // watchCache implements a Store interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. src/math/rand/rand.go

    		m[i] = m[j]
    		m[j] = i
    	}
    	return m
    }
    
    // Shuffle pseudo-randomizes the order of elements.
    // n is the number of elements. Shuffle panics if n < 0.
    // swap swaps the elements with indexes i and j.
    func (r *Rand) Shuffle(n int, swap func(i, j int)) {
    	if n < 0 {
    		panic("invalid argument to Shuffle")
    	}
    
    	// Fisher-Yates shuffle: https://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    .end=this.source.end||{},Object.assign(this.source.end,this.last.source.end))},t.each=function(n){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach++;var a=this.lastEach;if(this.indexes[a]=0,!!this.length){for(var s,o;this.indexes[a]<this.length&&(s=this.indexes[a],o=n(this.at(s),s),o!==!1);)this.indexes[a]+=1;if(delete this.indexes[a],o===!1)return!1}},t.walk=function(n){return this.each(function(a,s){var o=n(a,s);if(o!==!1&&a.length&&(o=a.walk(n)),o===!1)return!1})...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  5. src/runtime/error.go

    type boundsError struct {
    	x int64
    	y int
    	// Values in an index or slice expression can be signed or unsigned.
    	// That means we'd need 65 bits to encode all possible indexes, from -2^63 to 2^64-1.
    	// Instead, we keep track of whether x should be interpreted as signed or unsigned.
    	// y is known to be nonnegative and to fit in an int.
    	signed bool
    	code   boundsErrorCode
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. JavadocStyleGuide.md

    This fragment is very important: it is the only part of the text that appears in certain contexts such as class and method indexes:
    
    ```java
    /**
     * Returns an Image object that can then be painted on the screen.
     */
    ```
    
    ## 1.3 Code blocks and snippets
    
    `<pre>` is the default HTML tag for preformatted text.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/hlo_matchers.cc

      // StridedArrayView across a higher dimensional shape.
      //
      // The index `i` must be in [0, shape[axis])` where `shape` is the shape
      // of the tensor and `axis` is the axis along the tensor that the
      // StridedArrayView indexes along.
      int64_t OffsetForIndex(int64_t i) const { return offset_ + i * stride_; }
    
     private:
      // Calculates how many values to skip across a 1-D contiguous array that holds
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    // function.
    llvm::SmallSet<int, 4> GetResizedTensorListIndexes(
        func::FuncOp func, const llvm::SmallSet<int, 4> &tensor_list_args) {
      // `indexes` stores the argument index of tensorlists which size may get
      // updated in the function.
      llvm::SmallSet<int, 4> indexes;
      for (BlockArgument &arg : func.getArguments()) {
        if (tensor_list_args.contains(arg.getArgNumber())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  9. cmd/erasure-healing-common.go

    				// Erasure distribution seems to have lesser
    				// number of items than number of online disks.
    				inconsistent++
    				continue
    			}
    			if meta.Erasure.Distribution[i] != meta.Erasure.Index {
    				// Mismatch indexes with distribution order
    				inconsistent++
    			}
    		}
    	}
    
    	erasureDistributionReliable := true
    	if inconsistent > len(partsMetadata)/2 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

      std::vector<int32_t> bl_index;  // Indexes of B0,...,Bn and L0,...,Ln
      bl_index.reserve(dnums.lhs_rhs_out.size() + dnums.lhs_out.size());
      for (auto i : dnums.lhs_rhs_out) {
        bl_index.push_back(std::get<0>(i));
      }
      for (auto i : dnums.lhs_out) {
        bl_index.push_back(std::get<0>(i));
      }
      std::vector<int32_t> r_index;  // Indexes of R0,...,Rn
      r_index.reserve(dnums.rhs_out.size());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top