Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for mergesort (0.25 sec)

  1. src/sort/sort.go

    //
    // Remarks on other algorithms evaluated:
    //  - GCC's 4.6.3 stable_sort with merge_without_buffer from libstdc++:
    //    Not faster.
    //  - GCC's __rotate for block rotations: Not faster.
    //  - "Practical in-place mergesort" from  Jyrki Katajainen, Tomi A. Pasanen
    //    and Jukka Teuhola; Nordic Journal of Computing 3,1 (1996), 27-40:
    //    The given algorithms are in-place, number of Swap and Assignments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/split_into_island_per_op.mlir

          %res = "tf.Print"(%add) { message = "add result 2" } : (tensor<*xi32>) -> (tensor<*xi32>)
          tf_executor.yield %add : tensor<*xi32>
        }
        %merge_out:3 = tf_executor.Merge %island1#0, %switch#1 : tensor<*xi32>
        tf_executor.fetch %merge_out#0, %merge_out#1 : tensor<*xi32>, tensor<i32>
      }
      func.return %graph#0, %graph#1 : tensor<*xi32>, tensor<i32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/breakup-islands.mlir

          %res = "tf.Print"(%add) { message = "add result 2" } : (tensor<*xi32>) -> (tensor<*xi32>)
          tf_executor.yield %add : tensor<*xi32>
        }
        %merge_out:3 = tf_executor.Merge %island1#0, %switch#1 : tensor<*xi32>
        tf_executor.fetch %merge_out#0, %merge_out#1 : tensor<*xi32>, tensor<i32>
      }
      func.return %graph#0, %graph#1 : tensor<*xi32>, tensor<i32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 28.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/poset.go

    		if po.reaches(r, i, false) {
    			return r
    		}
    	}
    	panic("findroot didn't find any root")
    }
    
    // mergeroot merges two DAGs into one DAG by creating a new extra root
    func (po *poset) mergeroot(r1, r2 uint32) uint32 {
    	// Root #0 is special as it contains all constants. Since mergeroot
    	// discards r2 as root and keeps r1, make sure that r2 is not root #0,
    	// otherwise constants would move to a different root.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/TreeBasedTable.java

      @Override
      Iterator<C> createColumnKeyIterator() {
        Comparator<? super C> comparator = columnComparator();
    
        Iterator<C> merged =
            Iterators.mergeSorted(
                Iterables.transform(
                    backingMap.values(), (Map<C, V> input) -> input.keySet().iterator()),
                comparator);
    
        return new AbstractIterator<C>() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/TreeBasedTable.java

      @Override
      Iterator<C> createColumnKeyIterator() {
        Comparator<? super C> comparator = columnComparator();
    
        Iterator<C> merged =
            Iterators.mergeSorted(
                Iterables.transform(
                    backingMap.values(), (Map<C, V> input) -> input.keySet().iterator()),
                comparator);
    
        return new AbstractIterator<C>() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Iterables.java

       * <p>For any equivalent elements across all {@code iterables}, it is undefined which element is
       * returned first.
       *
       * @since 11.0
       */
      public static <T extends @Nullable Object> Iterable<T> mergeSorted(
          final Iterable<? extends Iterable<? extends T>> iterables,
          final Comparator<? super T> comparator) {
        checkNotNull(iterables, "iterables");
        checkNotNull(comparator, "comparator");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Iterables.java

       * <p>For any equivalent elements across all {@code iterables}, it is undefined which element is
       * returned first.
       *
       * @since 11.0
       */
      public static <T extends @Nullable Object> Iterable<T> mergeSorted(
          final Iterable<? extends Iterable<? extends T>> iterables,
          final Comparator<? super T> comparator) {
        checkNotNull(iterables, "iterables");
        checkNotNull(comparator, "comparator");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Iterators.java

       * returned first.
       *
       * @since 11.0
       */
      public static <T extends @Nullable Object> UnmodifiableIterator<T> mergeSorted(
          Iterable<? extends Iterator<? extends T>> iterators, Comparator<? super T> comparator) {
        checkNotNull(iterators, "iterators");
        checkNotNull(comparator, "comparator");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Iterators.java

       * returned first.
       *
       * @since 11.0
       */
      public static <T extends @Nullable Object> UnmodifiableIterator<T> mergeSorted(
          Iterable<? extends Iterator<? extends T>> iterators, Comparator<? super T> comparator) {
        checkNotNull(iterators, "iterators");
        checkNotNull(comparator, "comparator");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top