Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for Indices (0.27 sec)

  1. staging/src/k8s.io/api/apps/v1/types.go

    	// 0-indexed names, or to orchestrate progressive movement of replicas from
    	// one StatefulSet to another.
    	// If set, replica indices will be in the range:
    	//   [.spec.ordinals.start, .spec.ordinals.start + .spec.replicas).
    	// If unset, defaults to 0. Replica indices will be in the range:
    	//   [0, .spec.replicas).
    	// +optional
    	Start int32 `json:"start" protobuf:"varint,1,opt,name=start"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions.mlir

    } : (tensor<3x4x2xi32>, tensor<2x3x2xi64>) -> tensor<2x3x2x2xi32>
      func.return %2: tensor<2x3x2x2xi32>
    }
    // CHECK: %[[OPERAND:.*]] = stablehlo.constant
    // CHECK: %[[INDICES:.*]] = stablehlo.constant
    // CHECK: %[[XLA_CALL_MODULE:.*]] = "tf.XlaCallModule"(%[[OPERAND]], %[[INDICES]])
    // CHECK: return %[[XLA_CALL_MODULE:.*]] : tensor<2x3x2x2xi32>
    // CHECK: }
    
    // CHECK-LABEL: private @composite_gather_fn_1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            // For smart-casted expression, refer to the source of the original expression
            // For spread, named, and lambda arguments, the source is the KtValueArgument.
            // For other arguments (including array indices), the source is the KtExpression.
            return when (this) {
                is FirSamConversionExpression ->
                    expression.realPsi as? KtExpression
                is FirSmartCastExpression ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/deadness_analysis.cc

      // backedges in the previous iteration to infer a more precise predicate for
      // the backedge merge nodes and all the nodes that transitively use it.
      //
      // We don't track the output indices for should_revisit.  Instead, putting a
      // node in `should_revisit` denotes that the deadness flowing out from any
      // output from said node may have changed.  This is fine; only switches
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      }
    
      // This function rewrites the original op into a XLA DynamicUpdateSlice op.
      // |item| is expanded to have the same dimension as input_handle and
      // |index| is expanded to [index, 0, 0, ...] as the indices to input_handle.
      // On a high level, it's doing something like:
      // def : Pat<(TensorListSetItem($input_handle, $index, $item)),
      //           (XlaDynamicUpdateSlice($input_handle, ExpandDims($item, 0),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2.go

    			// Only add etags if any.
    			if fi.Parts[i].ETag != "" {
    				ventry.ObjectV2.PartETags = make([]string, len(fi.Parts))
    				break
    			}
    		}
    		for i := range fi.Parts {
    			// Only add indices if any.
    			if len(fi.Parts[i].Index) > 0 {
    				ventry.ObjectV2.PartIndices = make([][]byte, len(fi.Parts))
    				break
    			}
    		}
    		for i := range fi.Erasure.Distribution {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. cmd/test-utils_test.go

    const (
    	letterIdxBits = 6                    // 6 bits to represent a letter index
    	letterIdxMask = 1<<letterIdxBits - 1 // All 1-bits, as many as letterIdxBits
    	letterIdxMax  = 63 / letterIdxBits   // # of letter indices fitting in 63 bits
    )
    
    // Random number state.
    // We generate random temporary file names so that there's a good
    // chance the file doesn't exist yet.
    var (
    	randN  uint32
    	randmu sync.Mutex
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/dwarf.go

    //
    // FIXME: at the moment attributes are stored in a linked list in a
    // fairly space-inefficient way -- it might be better to instead look
    // up all attrs in a single large table, then store indices into the
    // table in the DIE. This would allow us to common up storage for
    // attributes that are shared by many DIEs (ex: byte size of N).
    func newattr(die *dwarf.DWDie, attr uint16, cls int, value int64, data interface{}) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// structured parameters and the pod needs this information.
    	resources resources
    
    	// mutex must be locked while accessing any of the fields below.
    	mutex sync.Mutex
    
    	// The indices of all claims that:
    	// - are allocated
    	// - use delayed allocation or the builtin controller
    	// - were not available on at least one node
    	//
    	// Set in parallel during Filter, so write access there must be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/riscv/obj.go

    )
    
    // encodings contains the encodings for RISC-V instructions.
    // Instructions are masked with obj.AMask to keep indices small.
    var encodings = [ALAST & obj.AMask]encoding{
    
    	// Unprivileged ISA
    
    	// 2.4: Integer Computational Instructions
    	AADDI & obj.AMask:  iIEncoding,
    	ASLTI & obj.AMask:  iIEncoding,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top