Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 161 for Indices (0.32 sec)

  1. src/go/types/typexpr.go

    				// best position for error reporting
    				pos := ix.Pos()
    				if i < len(ix.Indices) {
    					pos = ix.Indices[i].Pos()
    				}
    				check.softErrorf(atPos(pos), InvalidTypeArg, "%v", err)
    			} else {
    				check.mono.recordInstance(check.pkg, ix.Pos(), inst.TypeParams().list(), inst.TypeArgs().list(), ix.Indices)
    			}
    		}
    
    		// TODO(rfindley): remove this call: we don't need to call validType here,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

                List<Integer> indices = new ArrayList<>();
                List<String> tgt = target.getModules();
                Set<String> excludes = new LinkedHashSet<>(tgt);
                List<String> merged = new ArrayList<>(tgt.size() + src.size());
                merged.addAll(tgt);
                for (int i = 0, n = tgt.size(); i < n; i++) {
                    indices.add(i);
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

        llvm::StringMap<PartitionedCallDecompositionInfo>*);
    
    // Adds the corresponding sizes of tensor list buffers in block's terminator
    // to the list of return values. Returns the mapping from the buffer
    // indices to the added size indices, which is a list of tuples
    // (buffer_return_index, size_return_index, fixed_size).
    template <class TerminatorOp>
    llvm::SmallVector<std::tuple<int64_t, int64_t, bool>, 8>
    AddTensorListSizesToTerminator(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

        the indices that are previously set in _TfrtSetResource op.
        `shared_name` and `container` are used to store identifying information for
        resource tensors that have been hoisted. This is important for resource
        alias analysis and side effect analysis. These are empty for non-resource
        type tensors.
      }];
    
      let arguments = (ins
        I64ArrayAttr:$indices,
        StrArrayAttr:$shared_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        take value `on_value`, while all other locations take value `off_value`.
    
        If the input `indices` is rank `N`, the output will have rank `N+1`,
        The new axis is created at dimension `axis` (default: the new axis is
        appended at the end).
      }];
    
      let arguments = (ins
        TFL_TensorOf<[I32, I64]>:$indices,
        TFL_I32Tensor:$depth,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    //===----------------------------------------------------------------------===//
    
    // Here, $params and $indices needs to be ranked so that $axis and $batch_dims
    // attributes can be converted from TensorFlow axis format supporting negative
    // indexing to the HLO format.
    def LegalizeGatherV2 :
      Pat<(TF_GatherV2Op AnyRankedTensor:$params, AnyRankedTensor:$indices,
            (ConstantLikeMatcher ElementsAttr:$axis), $batch_dims),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      //     to segment the indices array, each segment corresponds to one element
      //     in the previous dimension. array_indices represents the index of the
      //     non-zero elements within this dimension (as those in the CSR matrix
      //     format, where the first array is row pointers and the second array is
      //     column indices).
      dense_size:int;
      array_segments:SparseIndexVector;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.h

    // Stores information about how to quantize a user-specified custom operation.
    // CustomOpInfo contains info of its corresponding CustomOp registered in the
    // CustomOpMap. 'quantizable_input_indices' is used to determine which indices
    // of the CustomOp are quantizable. 'is_weight_only' is used specify whether the
    // custom op is quantized only for storage and dequantized at runtime.
    // 'no_side_effect' is used to determine whether the op can be pruned if
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/ArrayCodecs.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    @file:Suppress("ReplaceManualRangeWithIndicesCalls") // array.indices uses Iterable and boxing, we don't want that.
    
    package org.gradle.internal.serialize.codecs.stdlib
    
    import org.gradle.internal.serialize.graph.Codec
    import org.gradle.internal.serialize.graph.ReadContext
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top