Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 408 for Indices (0.12 sec)

  1. api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocation.java

         *
         * @param target the target location
         * @param source the source location
         * @param indices the list of integers for the indices
         * @return the merged location
         */
        public static InputLocation merge(InputLocation target, InputLocation source, Collection<Integer> indices) {
            if (source == null) {
                return target;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/examples/pad/ops_defs.py

      for i in range(len(shape)):
        rdims = tf.raw_ops.OneHot(
            indices=i, depth=len(shape), on_value=True, off_value=False, axis=-1)
        rarray = tf.raw_ops.Reverse(tensor=input_, dims=rdims)
    
        left_padding_size = tf.raw_ops.GatherNd(params=paddings, indices=[i, 0])
        right_padding_size = tf.raw_ops.GatherNd(params=paddings, indices=[i, 1])
    
        if mode == 'REFLECT':
          left_padding, _ = tf.raw_ops.SplitV(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 01 05:00:29 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/fold_constant_transpose.cc

    namespace {
    
    // Returns contiguous offset (address) of the position represented by `indices`
    // in a `shape` shaped tensor. Assumes row-major order. `indices` and `shape`
    // should have the same size.
    // Example: Index (2, 3) of a (4, 5)-shaped tensor has the contiguous offset of
    // 2 * 5 + 3 = 13.
    int64_t GetContiguousOffset(const ArrayRef<int64_t> indices,
                                const ArrayRef<int64_t> shape) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/codegen.cc

          indices += absl::StrCat("[dim", dim, "]");
          count *= shape.dimensions(dim);
        }
      }
      rewrites->push_back({"{{I}}", absl::StrCat(i)});
      rewrites->push_back({"{{TYPE}}", type});
      rewrites->push_back({"{{DIM_VARS}}", absl::StrJoin(dim_vars, ", ")});
      rewrites->push_back({"{{DIM_SIZES}}", dim_sizes});
      rewrites->push_back({"{{INDICES}}", indices});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/mlrt/fuse_mlrt_ops.mlir

    func.func @main() -> (!tf_mlrt.tensor, !tf_mlrt.tensor) {
      // CHECK-NEXT: [[r:%.*]]:3 = tf_mlrt.get_resource {indices = [2, 0, 1]}
      // CHECK-NEXT: [[v:%.*]] = tf_mlrt.executeop([[r]]#0, [[r]]#1)
      // CHECK-NEXT: return [[v]], [[r]]#2
      %0 = tf_mlrt.get_resource {indices = [2]} : !tf_mlrt.tensor
      %1 = tf_mlrt.get_resource {indices = [0]} : !tf_mlrt.tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 07 23:57:30 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. src/mdo/java/InputLocation.java

         *
         * @param target the target location
         * @param source the source location
         * @param indices the list of integers for the indices
         * @return the merged location
         */
        public static InputLocation merge(InputLocation target, InputLocation source, Collection<Integer> indices) {
            if (source == null) {
                return target;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/collection_ops_util.cc

                                         ArrayRef<Value>{a, b});
    }
    
    namespace {
    
    int64_t GetFirstIfIndicesAreContiguous(Value indices) {
      auto type = mlir::dyn_cast<RankedTensorType>(indices.getType());
      if (!type) return -1;
      auto indices_op = indices.getDefiningOp();
      if (!indices_op) return -1;
      auto const_op = llvm::dyn_cast<TF::ConstOp>(indices_op);
      if (!const_op) return -1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/suggest/normalizer/AnalyzerNormalizer.java

    import java.util.List;
    
    import org.codelibs.fess.suggest.settings.AnalyzerSettings;
    import org.codelibs.fess.suggest.settings.SuggestSettings;
    import org.opensearch.action.admin.indices.analyze.AnalyzeAction;
    import org.opensearch.action.admin.indices.analyze.AnalyzeAction.AnalyzeToken;
    import org.opensearch.client.Client;
    
    public class AnalyzerNormalizer implements Normalizer {
        protected final Client client;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

    import org.opensearch.action.admin.indices.alias.IndicesAliasesRequestBuilder;
    import org.opensearch.action.admin.indices.create.CreateIndexResponse;
    import org.opensearch.action.admin.indices.exists.indices.IndicesExistsResponse;
    import org.opensearch.action.admin.indices.flush.FlushResponse;
    import org.opensearch.action.admin.indices.get.GetIndexResponse;
    import org.opensearch.action.admin.indices.mapping.get.GetMappingsResponse;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/codegen_test_h.golden

      //
      // T* argN_data()
      //   Returns the buffer of type T for positional argument N.
      //
      // T& argN(...dim indices...)
      //   Returns a reference to the value of type T for positional argument N,
      //   with dim indices specifying which value. No bounds checking is performed
      //   on dim indices.
    
      void set_arg0_data(const void* data) {
        set_arg_data(0, data);
      }
      float* arg0_data() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top