-
Notifications
You must be signed in to change notification settings - Fork 440
Expand file tree
/
Copy pathxsort.hpp
More file actions
1348 lines (1203 loc) · 48.8 KB
/
Copy pathxsort.hpp
File metadata and controls
1348 lines (1203 loc) · 48.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/***************************************************************************
* Copyright (c) Johan Mabille, Sylvain Corlay and Wolf Vollprecht *
* Copyright (c) QuantStack *
* *
* Distributed under the terms of the BSD 3-Clause License. *
* *
* The full license is in the file LICENSE, distributed with this software. *
****************************************************************************/
#ifndef XTENSOR_SORT_HPP
#define XTENSOR_SORT_HPP
#include <algorithm>
#include <cmath>
#include <iterator>
#include <utility>
#include <xtl/xcompare.hpp>
#include "../containers/xadapt.hpp"
#include "../containers/xarray.hpp"
#include "../containers/xtensor.hpp"
#include "../core/xeval.hpp"
#include "../core/xmath.hpp"
#include "../core/xtensor_config.hpp"
#include "../core/xtensor_forward.hpp"
#include "../misc/xmanipulation.hpp"
#include "../views/xindex_view.hpp"
#include "../views/xslice.hpp" // for xnone
#include "../views/xview.hpp"
namespace xt
{
/**
* @defgroup xt_xsort Sorting functions.
*
* Because sorting functions need to access the tensor data repeatedly, they evaluate their
* input and may allocate temporaries.
*/
namespace detail
{
template <class T>
std::ptrdiff_t adjust_secondary_stride(std::ptrdiff_t stride, T shape)
{
return stride != 0 ? stride : static_cast<std::ptrdiff_t>(shape);
}
template <class E>
inline std::ptrdiff_t get_secondary_stride(const E& ev)
{
if (ev.layout() == layout_type::row_major)
{
return adjust_secondary_stride(ev.strides()[ev.dimension() - 2], *(ev.shape().end() - 1));
}
return adjust_secondary_stride(ev.strides()[1], *(ev.shape().begin()));
}
template <class E>
inline std::size_t leading_axis_n_iters(const E& ev)
{
if (ev.layout() == layout_type::row_major)
{
return std::accumulate(
ev.shape().begin(),
ev.shape().end() - 1,
std::size_t(1),
std::multiplies<>()
);
}
return std::accumulate(ev.shape().begin() + 1, ev.shape().end(), std::size_t(1), std::multiplies<>());
}
template <class E, class F>
inline void call_over_leading_axis(E& ev, F&& fct)
{
XTENSOR_ASSERT(ev.dimension() >= 2);
const std::size_t n_iters = leading_axis_n_iters(ev);
const std::ptrdiff_t secondary_stride = get_secondary_stride(ev);
const auto begin = ev.data();
const auto end = begin + n_iters * secondary_stride;
for (auto iter = begin; iter != end; iter += secondary_stride)
{
fct(iter, iter + secondary_stride);
}
}
template <class E1, class E2, class F>
inline void call_over_leading_axis(E1& e1, E2& e2, F&& fct)
{
XTENSOR_ASSERT(e1.dimension() >= 2);
XTENSOR_ASSERT(e1.dimension() == e2.dimension());
const std::size_t n_iters = leading_axis_n_iters(e1);
const std::ptrdiff_t secondary_stride1 = get_secondary_stride(e1);
const std::ptrdiff_t secondary_stride2 = get_secondary_stride(e2);
XTENSOR_ASSERT(secondary_stride1 == secondary_stride2);
const auto begin1 = e1.data();
const auto end1 = begin1 + n_iters * secondary_stride1;
const auto begin2 = e2.data();
const auto end2 = begin2 + n_iters * secondary_stride2;
auto iter1 = begin1;
auto iter2 = begin2;
for (; (iter1 != end1) && (iter2 != end2); iter1 += secondary_stride1, iter2 += secondary_stride2)
{
fct(iter1, iter1 + secondary_stride1, iter2, iter2 + secondary_stride2);
}
}
template <class E>
inline std::size_t leading_axis(const E& e)
{
if (e.layout() == layout_type::row_major)
{
return e.dimension() - 1;
}
else if (e.layout() == layout_type::column_major)
{
return 0;
}
XTENSOR_THROW(std::runtime_error, "Layout not supported.");
}
// get permutations to transpose and reverse-transpose array
inline std::pair<dynamic_shape<std::size_t>, dynamic_shape<std::size_t>>
get_permutations(std::size_t dim, std::size_t ax, layout_type layout)
{
dynamic_shape<std::size_t> permutation(dim);
std::iota(permutation.begin(), permutation.end(), std::size_t(0));
permutation.erase(permutation.begin() + std::ptrdiff_t(ax));
if (layout == layout_type::row_major)
{
permutation.push_back(ax);
}
else
{
permutation.insert(permutation.begin(), ax);
}
// TODO find a more clever way to get reverse permutation?
dynamic_shape<std::size_t> reverse_permutation;
for (std::size_t i = 0; i < dim; ++i)
{
auto it = std::find(permutation.begin(), permutation.end(), i);
reverse_permutation.push_back(std::size_t(std::distance(permutation.begin(), it)));
}
return std::make_pair(std::move(permutation), std::move(reverse_permutation));
}
template <class R, class E, class F>
inline R map_axis(const E& e, std::ptrdiff_t axis, F&& lambda)
{
if (e.dimension() == 1)
{
R res = e;
lambda(res.begin(), res.end());
return res;
}
const std::size_t ax = normalize_axis(e.dimension(), axis);
if (ax == detail::leading_axis(e))
{
R res = e;
detail::call_over_leading_axis(res, std::forward<F>(lambda));
return res;
}
dynamic_shape<std::size_t> permutation, reverse_permutation;
std::tie(permutation, reverse_permutation) = get_permutations(e.dimension(), ax, e.layout());
R res = transpose(e, permutation);
detail::call_over_leading_axis(res, std::forward<F>(lambda));
res = transpose(res, reverse_permutation);
return res;
}
template <class VT>
struct flatten_sort_result_type_impl
{
using type = VT;
};
template <class VT, std::size_t N, layout_type L>
struct flatten_sort_result_type_impl<xtensor<VT, N, L>>
{
using type = xtensor<VT, 1, L>;
};
template <class VT, class S, layout_type L>
struct flatten_sort_result_type_impl<xtensor_fixed<VT, S, L>>
{
using type = xtensor_fixed<VT, xshape<fixed_compute_size<S>::value>, L>;
};
template <class VT>
struct flatten_sort_result_type : flatten_sort_result_type_impl<common_tensor_type_t<VT>>
{
};
template <class VT>
using flatten_sort_result_type_t = typename flatten_sort_result_type<VT>::type;
template <class E, class R = flatten_sort_result_type_t<E>>
inline auto flat_sort_impl(const xexpression<E>& e)
{
const auto& de = e.derived_cast();
R ev;
ev.resize({static_cast<typename R::shape_type::value_type>(de.size())});
std::copy(de.cbegin(), de.cend(), ev.begin());
std::sort(ev.begin(), ev.end());
return ev;
}
}
template <class E>
inline auto sort(const xexpression<E>& e, placeholders::xtuph /*t*/)
{
return detail::flat_sort_impl(e);
}
namespace detail
{
template <class T>
struct sort_eval_type
{
using type = typename T::temporary_type;
};
template <class T, std::size_t... I, layout_type L>
struct sort_eval_type<xtensor_fixed<T, fixed_shape<I...>, L>>
{
using type = xtensor<T, sizeof...(I), L>;
};
}
/**
* Sort xexpression (optionally along axis)
* The sort is performed using the ``std::sort`` functions.
* A copy of the xexpression is created and returned.
*
* @ingroup xt_xsort
* @param e xexpression to sort
* @param axis axis along which sort is performed
*
* @return sorted array (copy)
*/
template <class E>
inline auto sort(const xexpression<E>& e, std::ptrdiff_t axis = -1)
{
using eval_type = typename detail::sort_eval_type<E>::type;
return detail::map_axis<eval_type>(
e.derived_cast(),
axis,
[](auto begin, auto end)
{
std::sort(begin, end);
}
);
}
/*****************************
* Implementation of argsort *
*****************************/
/**
* Sorting method.
* Predefined methods for performing indirect sorting.
* @see argsort(const xexpression<E>&, std::ptrdiff_t, sorting_method)
*/
enum class sorting_method
{
/**
* Faster method but with no guarantee on preservation of order of equal elements
* https://en.cppreference.com/w/cpp/algorithm/sort.
*/
quick,
/**
* Slower method but with guarantee on preservation of order of equal elements
* https://en.cppreference.com/w/cpp/algorithm/stable_sort.
*/
stable,
};
namespace detail
{
template <class ConstRandomIt, class RandomIt, class Compare, class Method>
inline void argsort_iter(
ConstRandomIt data_begin,
ConstRandomIt data_end,
RandomIt idx_begin,
RandomIt idx_end,
Compare comp,
Method method
)
{
XTENSOR_ASSERT(std::distance(data_begin, data_end) >= 0);
XTENSOR_ASSERT(std::distance(idx_begin, idx_end) == std::distance(data_begin, data_end));
(void) idx_end; // TODO(C++17) [[maybe_unused]] only used in assertion.
std::iota(idx_begin, idx_end, 0);
switch (method)
{
case (sorting_method::quick):
{
std::sort(
idx_begin,
idx_end,
[&](const auto i, const auto j)
{
return comp(*(data_begin + i), *(data_begin + j));
}
);
}
case (sorting_method::stable):
{
std::stable_sort(
idx_begin,
idx_end,
[&](const auto i, const auto j)
{
return comp(*(data_begin + i), *(data_begin + j));
}
);
}
}
}
template <class ConstRandomIt, class RandomIt, class Method>
inline void
argsort_iter(ConstRandomIt data_begin, ConstRandomIt data_end, RandomIt idx_begin, RandomIt idx_end, Method method)
{
return argsort_iter(
std::move(data_begin),
std::move(data_end),
std::move(idx_begin),
std::move(idx_end),
[](const auto& x, const auto& y) -> bool
{
return x < y;
},
method
);
}
template <class VT, class T>
struct rebind_value_type
{
using type = xarray<VT, xt::layout_type::dynamic>;
};
template <class VT, class EC, layout_type L>
struct rebind_value_type<VT, xarray<EC, L>>
{
using type = xarray<VT, L>;
};
template <class VT, class EC, std::size_t N, layout_type L>
struct rebind_value_type<VT, xtensor<EC, N, L>>
{
using type = xtensor<VT, N, L>;
};
template <class VT, class ET, class S, layout_type L>
struct rebind_value_type<VT, xtensor_fixed<ET, S, L>>
{
using type = xtensor_fixed<VT, S, L>;
};
template <class VT, class T>
struct flatten_rebind_value_type
{
using type = typename rebind_value_type<VT, T>::type;
};
template <class VT, class EC, std::size_t N, layout_type L>
struct flatten_rebind_value_type<VT, xtensor<EC, N, L>>
{
using type = xtensor<VT, 1, L>;
};
template <class VT, class ET, class S, layout_type L>
struct flatten_rebind_value_type<VT, xtensor_fixed<ET, S, L>>
{
using type = xtensor_fixed<VT, xshape<fixed_compute_size<S>::value>, L>;
};
template <class T>
struct argsort_result_type
{
using type = typename rebind_value_type<typename T::temporary_type::size_type, typename T::temporary_type>::type;
};
template <class T>
struct linear_argsort_result_type
{
using type = typename flatten_rebind_value_type<
typename T::temporary_type::size_type,
typename T::temporary_type>::type;
};
template <class E, class R = typename detail::linear_argsort_result_type<E>::type, class Method>
inline auto flatten_argsort_impl(const xexpression<E>& e, Method method)
{
const auto& de = e.derived_cast();
auto cit = de.template begin<layout_type::row_major>();
using const_iterator = decltype(cit);
auto ad = xiterator_adaptor<const_iterator, const_iterator>(cit, cit, de.size());
using result_type = R;
result_type result;
result.resize({de.size()});
detail::argsort_iter(de.cbegin(), de.cend(), result.begin(), result.end(), method);
return result;
}
}
template <class E>
inline auto
argsort(const xexpression<E>& e, placeholders::xtuph /*t*/, sorting_method method = sorting_method::quick)
{
return detail::flatten_argsort_impl(e, method);
}
/**
* Argsort xexpression (optionally along axis)
* Performs an indirect sort along the given axis. Returns an xarray
* of indices of the same shape as e that index data along the given axis in
* sorted order.
*
* @ingroup xt_xsort
* @param e xexpression to argsort
* @param axis axis along which argsort is performed
* @param method sorting algorithm to use
*
* @return argsorted index array
*
* @see xt::sorting_method
*/
template <class E>
inline auto
argsort(const xexpression<E>& e, std::ptrdiff_t axis = -1, sorting_method method = sorting_method::quick)
{
using eval_type = typename detail::sort_eval_type<E>::type;
using result_type = typename detail::argsort_result_type<eval_type>::type;
const auto& de = e.derived_cast();
std::size_t ax = normalize_axis(de.dimension(), axis);
if (de.dimension() == 1)
{
return detail::flatten_argsort_impl<E, result_type>(e, method);
}
const auto argsort = [&method](auto res_begin, auto res_end, auto ev_begin, auto ev_end)
{
detail::argsort_iter(ev_begin, ev_end, res_begin, res_end, method);
};
if (ax == detail::leading_axis(de))
{
result_type res = result_type::from_shape(de.shape());
detail::call_over_leading_axis(res, de, argsort);
return res;
}
dynamic_shape<std::size_t> permutation, reverse_permutation;
std::tie(permutation, reverse_permutation) = detail::get_permutations(de.dimension(), ax, de.layout());
eval_type ev = transpose(de, permutation);
result_type res = result_type::from_shape(ev.shape());
detail::call_over_leading_axis(res, ev, argsort);
res = transpose(res, reverse_permutation);
return res;
}
/************************************************
* Implementation of partition and argpartition *
************************************************/
namespace detail
{
/**
* Partition a given random iterator.
*
* @param data_begin Start of the data to partition.
* @param data_end Past end of the data to partition.
* @param kth_start Start of the indices to partition.
* Indices must be sorted in decreasing order.
* @param kth_end Past end of the indices to partition.
* Indices must be sorted in decreasing order.
* @param comp Comparison function for `x < y`.
*/
template <class RandomIt, class Iter, class Compare>
inline void
partition_iter(RandomIt data_begin, RandomIt data_end, Iter kth_begin, Iter kth_end, Compare comp)
{
XTENSOR_ASSERT(std::distance(data_begin, data_end) >= 0);
XTENSOR_ASSERT(std::distance(kth_begin, kth_end) >= 0);
using idx_type = typename std::iterator_traits<Iter>::value_type;
idx_type k_last = static_cast<idx_type>(std::distance(data_begin, data_end));
for (; kth_begin != kth_end; ++kth_begin)
{
std::nth_element(data_begin, data_begin + *kth_begin, data_begin + k_last, std::move(comp));
k_last = *kth_begin;
}
}
template <class RandomIt, class Iter>
inline void partition_iter(RandomIt data_begin, RandomIt data_end, Iter kth_begin, Iter kth_end)
{
return partition_iter(
std::move(data_begin),
std::move(data_end),
std::move(kth_begin),
std::move(kth_end),
[](const auto& x, const auto& y) -> bool
{
return x < y;
}
);
}
}
/**
* Partially sort xexpression
*
* Partition shuffles the xexpression in a way so that the kth element
* in the returned xexpression is in the place it would appear in a sorted
* array and all elements smaller than this entry are placed (unsorted) before.
*
* The optional third parameter can either be an axis or ``xnone()`` in which case
* the xexpression will be flattened.
*
* This function uses ``std::nth_element`` internally.
*
* @code{cpp}
* xt::xarray<float> a = {1, 10, -10, 123};
* std::cout << xt::partition(a, 0) << std::endl; // {-10, 1, 123, 10} the correct entry at index 0
* std::cout << xt::partition(a, 3) << std::endl; // {1, 10, -10, 123} the correct entry at index 3
* std::cout << xt::partition(a, {0, 3}) << std::endl; // {-10, 1, 10, 123} the correct entries at index 0
* and 3 \endcode
*
* @ingroup xt_xsort
* @param e input xexpression
* @param kth_container a container of ``indices`` that should contain the correctly sorted value
* @param ax placeholder indicating that the input is flattened before sorting
* sorting
*
* @return partially sorted xcontainer
*/
template <class E, xtl::non_integral_concept C, class R = detail::flatten_sort_result_type_t<E>>
inline R partition(const xexpression<E>& e, C kth_container, placeholders::xtuph /*ax*/)
{
const auto& de = e.derived_cast();
R ev = R::from_shape({de.size()});
std::sort(kth_container.begin(), kth_container.end());
std::copy(de.linear_cbegin(), de.linear_cend(), ev.linear_begin()); // flatten
detail::partition_iter(ev.linear_begin(), ev.linear_end(), kth_container.rbegin(), kth_container.rend());
return ev;
}
template <class E, class I, std::size_t N, class R = detail::flatten_sort_result_type_t<E>>
inline R partition(const xexpression<E>& e, const I (&kth_container)[N], placeholders::xtuph tag)
{
return partition(
e,
xtl::forward_sequence<std::array<std::size_t, N>, decltype(kth_container)>(kth_container),
tag
);
}
template <class E, class R = detail::flatten_sort_result_type_t<E>>
inline R partition(const xexpression<E>& e, std::size_t kth, placeholders::xtuph tag)
{
return partition(e, std::array<std::size_t, 1>({kth}), tag);
}
template <class E, xtl::non_integral_concept C>
inline auto partition(const xexpression<E>& e, C kth_container, std::ptrdiff_t axis = -1)
{
using eval_type = typename detail::sort_eval_type<E>::type;
std::sort(kth_container.begin(), kth_container.end());
return detail::map_axis<eval_type>(
e.derived_cast(),
axis,
[&kth_container](auto begin, auto end)
{
detail::partition_iter(begin, end, kth_container.rbegin(), kth_container.rend());
}
);
}
template <class E, class T, std::size_t N>
inline auto partition(const xexpression<E>& e, const T (&kth_container)[N], std::ptrdiff_t axis = -1)
{
return partition(
e,
xtl::forward_sequence<std::array<std::size_t, N>, decltype(kth_container)>(kth_container),
axis
);
}
template <class E>
inline auto partition(const xexpression<E>& e, std::size_t kth, std::ptrdiff_t axis = -1)
{
return partition(e, std::array<std::size_t, 1>({kth}), axis);
}
/**
* Partially sort arguments
*
* Argpartition shuffles the indices to a xexpression in a way so that the index for the
* kth element in the returned xexpression is in the place it would appear in a sorted
* array and all elements smaller than this entry are placed (unsorted) before.
*
* The optional third parameter can either be an axis or ``xnone()`` in which case
* the xexpression will be flattened.
*
* This function uses ``std::nth_element`` internally.
*
* @code{cpp}
* xt::xarray<float> a = {1, 10, -10, 123};
* std::cout << xt::argpartition(a, 0) << std::endl; // {2, 0, 3, 1} the correct entry at index 0
* std::cout << xt::argpartition(a, 3) << std::endl; // {0, 1, 2, 3} the correct entry at index 3
* std::cout << xt::argpartition(a, {0, 3}) << std::endl; // {2, 0, 1, 3} the correct entries at index 0
* and 3 \endcode
*
* @ingroup xt_xsort
* @param e input xexpression
* @param kth_container a container of ``indices`` that should contain the correctly sorted value
* @param axis placeholder indicating that the input is flattened before sorting
* sorting
*
* @return xcontainer with indices of partial sort of input
*/
template <
class E,
xtl::non_integral_concept C,
class R = typename detail::linear_argsort_result_type<typename detail::sort_eval_type<E>::type>::type>
inline R argpartition(const xexpression<E>& e, C kth_container, placeholders::xtuph)
{
using eval_type = typename detail::sort_eval_type<E>::type;
using result_type = typename detail::linear_argsort_result_type<eval_type>::type;
const auto& de = e.derived_cast();
result_type res = result_type::from_shape({de.size()});
std::sort(kth_container.begin(), kth_container.end());
std::iota(res.linear_begin(), res.linear_end(), 0);
detail::partition_iter(
res.linear_begin(),
res.linear_end(),
kth_container.rbegin(),
kth_container.rend(),
[&de](std::size_t a, std::size_t b)
{
return de[a] < de[b];
}
);
return res;
}
template <class E, class I, std::size_t N>
inline auto argpartition(const xexpression<E>& e, const I (&kth_container)[N], placeholders::xtuph tag)
{
return argpartition(
e,
xtl::forward_sequence<std::array<std::size_t, N>, decltype(kth_container)>(kth_container),
tag
);
}
template <class E>
inline auto argpartition(const xexpression<E>& e, std::size_t kth, placeholders::xtuph tag)
{
return argpartition(e, std::array<std::size_t, 1>({kth}), tag);
}
template <class E, xtl::non_integral_concept C>
inline auto argpartition(const xexpression<E>& e, C kth_container, std::ptrdiff_t axis = -1)
{
using eval_type = typename detail::sort_eval_type<E>::type;
using result_type = typename detail::argsort_result_type<eval_type>::type;
const auto& de = e.derived_cast();
if (de.dimension() == 1)
{
return argpartition<E, C, result_type>(e, std::forward<C>(kth_container), xnone());
}
std::sort(kth_container.begin(), kth_container.end());
const auto argpartition_w_kth =
[&kth_container](auto res_begin, auto res_end, auto ev_begin, auto /*ev_end*/)
{
std::iota(res_begin, res_end, 0);
detail::partition_iter(
res_begin,
res_end,
kth_container.rbegin(),
kth_container.rend(),
[&ev_begin](auto const& i, auto const& j)
{
return *(ev_begin + i) < *(ev_begin + j);
}
);
};
const std::size_t ax = normalize_axis(de.dimension(), axis);
if (ax == detail::leading_axis(de))
{
result_type res = result_type::from_shape(de.shape());
detail::call_over_leading_axis(res, de, argpartition_w_kth);
return res;
}
dynamic_shape<std::size_t> permutation, reverse_permutation;
std::tie(permutation, reverse_permutation) = detail::get_permutations(de.dimension(), ax, de.layout());
eval_type ev = transpose(de, permutation);
result_type res = result_type::from_shape(ev.shape());
detail::call_over_leading_axis(res, ev, argpartition_w_kth);
res = transpose(res, reverse_permutation);
return res;
}
template <class E, class I, std::size_t N>
inline auto argpartition(const xexpression<E>& e, const I (&kth_container)[N], std::ptrdiff_t axis = -1)
{
return argpartition(
e,
xtl::forward_sequence<std::array<std::size_t, N>, decltype(kth_container)>(kth_container),
axis
);
}
template <class E>
inline auto argpartition(const xexpression<E>& e, std::size_t kth, std::ptrdiff_t axis = -1)
{
return argpartition(e, std::array<std::size_t, 1>({kth}), axis);
}
/******************
* xt::quantile *
******************/
namespace detail
{
template <class S, class I, class K, class O>
inline void select_indices_impl(
const S& shape,
const I& indices,
std::size_t axis,
std::size_t current_dim,
const K& current_index,
O& out
)
{
using id_t = typename K::value_type;
if ((current_dim < shape.size() - 1) && (current_dim == axis))
{
for (auto i : indices)
{
auto idx = current_index;
idx[current_dim] = i;
select_indices_impl(shape, indices, axis, current_dim + 1, idx, out);
}
}
else if ((current_dim < shape.size() - 1) && (current_dim != axis))
{
for (id_t i = 0; xtl::cmp_less(i, shape[current_dim]); ++i)
{
auto idx = current_index;
idx[current_dim] = i;
select_indices_impl(shape, indices, axis, current_dim + 1, idx, out);
}
}
else if ((current_dim == shape.size() - 1) && (current_dim == axis))
{
for (auto i : indices)
{
auto idx = current_index;
idx[current_dim] = i;
out.push_back(std::move(idx));
}
}
else if ((current_dim == shape.size() - 1) && (current_dim != axis))
{
for (id_t i = 0; xtl::cmp_less(i, shape[current_dim]); ++i)
{
auto idx = current_index;
idx[current_dim] = i;
out.push_back(std::move(idx));
}
}
}
template <class S, class I>
inline auto select_indices(const S& shape, const I& indices, std::size_t axis)
{
using index_type = get_strides_t<S>;
auto out = std::vector<index_type>();
select_indices_impl(shape, indices, axis, 0, xtl::make_sequence<index_type>(shape.size()), out);
return out;
}
// TODO remove when fancy index views are implemented
// Poor man's indexing along a single axis as in NumPy a[:, [1, 3, 4]]
template <class E, class I>
inline auto fancy_indexing(E&& e, const I& indices, std::ptrdiff_t axis)
{
const std::size_t ax = normalize_axis(e.dimension(), axis);
using shape_t = get_strides_t<typename std::decay_t<E>::shape_type>;
auto shape = xtl::forward_sequence<shape_t, decltype(e.shape())>(e.shape());
shape[ax] = indices.size();
return reshape_view(
index_view(std::forward<E>(e), select_indices(e.shape(), indices, ax)),
std::move(shape)
);
}
template <class T, class I, class P>
inline auto quantile_kth_gamma(std::size_t n, const P& probas, T alpha, T beta)
{
const auto m = alpha + probas * (T(1) - alpha - beta);
// Evaluting since reused a lot
const auto p_n_m = eval(probas * static_cast<T>(n) + m - 1);
// Previous (virtual) index, may be out of bounds
const auto j = floor(p_n_m);
const auto j_jp1 = concatenate(xtuple(j, j + 1));
// Both interpolation indices, k and k+1
const auto k_kp1 = xt::cast<std::size_t>(clip(j_jp1, T(0), T(n - 1)));
// Both interpolation coefficients, 1-gamma and gamma
const auto omg_g = concatenate(xtuple(T(1) - (p_n_m - j), p_n_m - j));
return std::make_pair(eval(k_kp1), eval(omg_g));
}
// TODO should implement unsqueeze rather
template <class S>
inline auto unsqueeze_shape(const S& shape, std::size_t axis)
{
XTENSOR_ASSERT(axis <= shape.size());
auto new_shape = xtl::forward_sequence<xt::svector<std::size_t>, decltype(shape)>(shape);
new_shape.insert(new_shape.begin() + axis, 1);
return new_shape;
}
}
/**
* Compute quantiles over the given axis.
*
* In a sorted array represneting a distribution of numbers, the quantile of a probability ``p``
* is the the cut value ``q`` such that a fraction ``p`` of the distribution is lesser or equal
* to ``q``.
* When the cutpoint falls between two elemnts of the sample distribution, a interpolation is
* computed using the @p alpha and @p beta coefficients, as descripted in
* (Hyndman and Fan, 1996).
*
* The algorithm partially sorts entries in a copy along the @p axis axis.
*
* @ingroup xt_xsort
* @param e Expression containing the distribution over which the quantiles are computed.
* @param probas An list of probability associated with each desired quantiles.
* All elements must be in the range ``[0, 1]``.
* @param axis The dimension in which to compute the quantiles, *i.e* the axis representing the
* distribution.
* @param alpha Interpolation parameter. Must be in the range ``[0, 1]]``.
* @param beta Interpolation parameter. Must be in the range ``[0, 1]]``.
* @tparam T The type in which the quantile are computed.
* @return An expression with as many dimensions as the input @p e.
* The first axis correspond to the quantiles.
* The other axes are the axes that remain after the reduction of @p e.
* @see (Hyndman and Fan, 1996) R. J. Hyndman and Y. Fan,
* "Sample quantiles in statistical packages", The American Statistician,
* 50(4), pp. 361-365, 1996
* @see https://en.wikipedia.org/wiki/Quantile
*/
template <class T = double, class E, class P>
inline auto quantile(E&& e, const P& probas, std::ptrdiff_t axis, T alpha, T beta)
{
XTENSOR_ASSERT(all(0. <= probas));
XTENSOR_ASSERT(all(probas <= 1.));
XTENSOR_ASSERT(0. <= alpha);
XTENSOR_ASSERT(alpha <= 1.);
XTENSOR_ASSERT(0. <= beta);
XTENSOR_ASSERT(beta <= 1.);
using tmp_shape_t = get_strides_t<typename std::decay_t<E>::shape_type>;
using id_t = typename tmp_shape_t::value_type;
const std::size_t ax = normalize_axis(e.dimension(), axis);
const std::size_t n = e.shape()[ax];
auto kth_gamma = detail::quantile_kth_gamma<T, id_t, P>(n, probas, alpha, beta);
// Select relevant values for computing interpolating quantiles
auto e_partition = xt::partition(std::forward<E>(e), kth_gamma.first, ax);
auto e_kth = detail::fancy_indexing(std::move(e_partition), std::move(kth_gamma.first), ax);
// Reshape interpolation coefficients
auto gm1_g_shape = xtl::make_sequence<tmp_shape_t>(e.dimension(), 1);
gm1_g_shape[ax] = kth_gamma.second.size();
auto gm1_g_reshaped = reshape_view(std::move(kth_gamma.second), std::move(gm1_g_shape));
// Compute interpolation
// TODO(C++20) use (and create) xt::lerp in C++
auto e_kth_g = std::move(e_kth) * std::move(gm1_g_reshaped);
// Reshape pairwise interpolate for suming along new axis
auto e_kth_g_shape = detail::unsqueeze_shape(e_kth_g.shape(), ax);
e_kth_g_shape[ax] = 2;
e_kth_g_shape[ax + 1] /= 2;
auto quantiles = xt::sum(reshape_view(std::move(e_kth_g), std::move(e_kth_g_shape)), ax);
// Cannot do a transpose on a non-strided expression so we have to eval
return moveaxis(eval(std::move(quantiles)), ax, 0);
}
// Static proba array overload
template <class T = double, class E, std::size_t N>
inline auto quantile(E&& e, const T (&probas)[N], std::ptrdiff_t axis, T alpha, T beta)
{
return quantile(std::forward<E>(e), adapt(probas, {N}), axis, alpha, beta);
}
/**
* Compute quantiles of the whole expression.
*
* The quantiles are computed over the whole expression, as if flatten in a one-dimensional
* expression.
*
* @ingroup xt_xsort
* @see xt::quantile(E&& e, P const& probas, std::ptrdiff_t axis, T alpha, T beta)
*/
template <class T = double, class E, class P>
inline auto quantile(E&& e, const P& probas, T alpha, T beta)
{
return quantile(xt::ravel(std::forward<E>(e)), probas, 0, alpha, beta);
}
// Static proba array overload
template <class T = double, class E, std::size_t N>
inline auto quantile(E&& e, const T (&probas)[N], T alpha, T beta)
{
return quantile(std::forward<E>(e), adapt(probas, {N}), alpha, beta);
}
/**
* Quantile interpolation method.
*
* Predefined methods for interpolating quantiles, as defined in (Hyndman and Fan, 1996).
*
* @ingroup xt_xsort
* @see (Hyndman and Fan, 1996) R. J. Hyndman and Y. Fan,
* "Sample quantiles in statistical packages", The American Statistician,
* 50(4), pp. 361-365, 1996
* @see xt::quantile(E&& e, P const& probas, std::ptrdiff_t axis, xt::quantile_method method)
*/
enum class quantile_method
{
/** Method 4 of (Hyndman and Fan, 1996) with ``alpha=0`` and ``beta=1``. */
interpolated_inverted_cdf = 4,
/** Method 5 of (Hyndman and Fan, 1996) with ``alpha=1/2`` and ``beta=1/2``. */
hazen,
/** Method 6 of (Hyndman and Fan, 1996) with ``alpha=0`` and ``beta=0``. */
weibull,
/** Method 7 of (Hyndman and Fan, 1996) with ``alpha=1`` and ``beta=1``. */
linear,
/** Method 8 of (Hyndman and Fan, 1996) with ``alpha=1/3`` and ``beta=1/3``. */
median_unbiased,
/** Method 9 of (Hyndman and Fan, 1996) with ``alpha=3/8`` and ``beta=3/8``. */
normal_unbiased,
};
/**
* Compute quantiles over the given axis.
*
* The function takes the name of a predefined method to compute to interpolate between values.
*
* @ingroup xt_xsort
* @see xt::quantile_method