Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Indices (0.16 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. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // -----
    
    // CHECK-LABEL: @gather_v2
    //  CHECK-SAME: %[[PARAMS:[a-zA-Z0-9_]+]]
    //  CHECK-SAME: %[[INDICES:[a-zA-Z0-9_]+]]
    func.func @gather_v2(%params: tensor<16x2x3xf32>, %indices: tensor<16x5xi32>) -> tensor<16x2x5xf32> {
      //      CHECK: mhlo.torch_index_select
      // CHECK-SAME:   %[[PARAMS]], %[[INDICES]]
      // CHECK-SAME:   batch_dims = 1
      // CHECK-SAME:   dim = 2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/optimize.mlir

    // CHECK:           %[[VALUES:.*]], %[[INDICES:.*]] = "tfl.topk_v2"(%[[ARG]], %[[K]]) : (tensor<3x10xf32>, tensor<i32>) -> (tensor<3x5xf32>, tensor<3x5xi32>)
    // CHECK:           return %[[INDICES]] : tensor<3x5xi32>
    // CHECK:         }
    func.func @optimizeTopKOnlyIndices(%arg: tensor<3x10xf32>) -> tensor<3x5xi32>{
      %K = arith.constant dense<10> : tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK-SAME:                         %[[ARG_1:.*]]: tensor<192x256x1xui32>)
    // CHECK:            %[[INDICES:.*]] = "tf.Cast"(%arg1) <{Truncate = false}> : (tensor<192x256x1xui32>) -> tensor<192x256x1xi64>
    // CHECK:            %[[VAL_0:.*]] = "tf.GatherNd"(%[[ARG_0]], %[[INDICES]]) <{bad_indices_policy = ""}> : {{.*}} -> tensor<192x256xf16>
    // CHECK:            return %[[VAL_0]]
    // CHECK:         }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  5. doc/go_spec.html

    <a href="#Representability">representable</a> by a value of type
    <code>int</code>; for arrays or constant strings, constant indices must also be in range.
    If both indices are constant, they must satisfy <code>low &lt;= high</code>.
    If the indices are out of range at run time, a <a href="#Run_time_panics">run-time panic</a> occurs.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 10m */
        String INDEX_HEALTH_TIMEOUT = "index.health.timeout";
    
        /** The key of the configuration. e.g. 1m */
        String INDEX_INDICES_TIMEOUT = "index.indices.timeout";
    
        /** The key of the configuration. e.g. text/html=html<br>
         * application/msword=word<br>
         * application/vnd.openxmlformats-officedocument.wordprocessingml.document=word<br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  7. prow/config/calico.yaml

                    description: Deprecated in favor of RouteTableRanges. Calico programs
                      additional Linux route tables for various purposes. RouteTableRange
                      specifies the indices of the route tables that Calico should use.
                    properties:
                      max:
                        type: integer
                      min:
                        type: integer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.15.md

    - Fix: get azure disk lun timeout issue ([#88158](https://github.com/kubernetes/kubernetes/pull/88158), [@andyzhangx](https://github.com/andyzhangx)) [SIG Cloud Provider and Storage]
    - Fixed `threadSafeMap` high memory usage caused by indices that have churn of high-cardinality keys. E.g. namespaces ([#88005](https://github.com/kubernetes/kubernetes/pull/88005), [@patrickshan](https://github.com/patrickshan)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  9. 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)
  10. CHANGELOG/CHANGELOG-1.16.md

    - Fix: get azure disk lun timeout issue ([#88158](https://github.com/kubernetes/kubernetes/pull/88158), [@andyzhangx](https://github.com/andyzhangx)) [SIG Cloud Provider and Storage]
    - Fixed `threadSafeMap` high memory usage caused by indices that have churn of high-cardinality keys. E.g. namespaces ([#88007](https://github.com/kubernetes/kubernetes/pull/88007), [@patrickshan](https://github.com/patrickshan)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
Back to top