reduction.cc 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. // -*- mode: c++; coding: utf-8 -*-
  2. // ra-ra/test - Array reductions.
  3. // (c) Daniel Llorens - 2014
  4. // This library is free software; you can redistribute it and/or modify it under
  5. // the terms of the GNU Lesser General Public License as published by the Free
  6. // Software Foundation; either version 3 of the License, or (at your option) any
  7. // later version.
  8. #include <iostream>
  9. #include <iterator>
  10. #include "ra/test.hh"
  11. #include "mpdebug.hh"
  12. using std::cout, std::endl, std::flush, std::tuple, ra::TestRecorder;
  13. using real = double;
  14. using complex = std::complex<double>;
  15. using ra::sqrm;
  16. int main()
  17. {
  18. TestRecorder tr(std::cout);
  19. tr.section("amax with different expr types");
  20. {
  21. auto test_amax_expr = [&tr](auto && a, auto && b)
  22. {
  23. a = ra::Small<real, 2, 2> {1, 2, 9, -10};
  24. tr.test_eq(amax(a), 9);
  25. b = ra::Small<real, 2, 2> {1, 1, 1, 1};
  26. tr.test_eq(amax(a+b), 10);
  27. };
  28. test_amax_expr(ra::Unique<real, 2>({2, 2}, 0.), ra::Unique<real, 2>({2, 2}, 0.));
  29. test_amax_expr(ra::Small<real, 2, 2>(), ra::Small<real, 2, 2>());
  30. // failed in gcc 5.1 when amax() took its args by plain auto (now auto &&).
  31. test_amax_expr(ra::Unique<real, 2>({2, 2}, 0.), ra::Small<real, 2, 2>());
  32. }
  33. tr.section("every / any");
  34. {
  35. tr.test(every(ra::Unique<real, 2>({4, 4}, 10+ra::_0-ra::_1)));
  36. tr.test(any(ra::Unique<real, 2>({4, 4}, ra::_0-ra::_1)));
  37. tr.test(ra::every(true));
  38. tr.test(!ra::every(false));
  39. tr.test(ra::any(true));
  40. tr.test(!ra::any(false));
  41. tr.test(every(ra::Unique<int, 1> {5, 5}==5));
  42. tr.test(!every(ra::Unique<int, 1> {2, 5}==5));
  43. tr.test(!every(ra::Unique<int, 1> {5, 2}==5));
  44. tr.test(!every(ra::Unique<int, 1> {2, 3}==5));
  45. tr.test(any(ra::Unique<int, 1> {5, 5}==5));
  46. tr.test(any(ra::Unique<int, 1> {2, 5}==5));
  47. tr.test(any(ra::Unique<int, 1> {5, 2}==5));
  48. tr.test(!any(ra::Unique<int, 1> {2, 3}==5));
  49. }
  50. tr.section("norm2");
  51. {
  52. ra::Small<real, 2> a {1, 2};
  53. tr.test_abs(std::sqrt(5.), norm2(a), 1e-15);
  54. ra::Small<float, 2> b {1, 2};
  55. tr.test_abs(std::sqrt(5.f), norm2(b), 4e-8);
  56. tr.info("type of norm2(floats)").test(std::is_same_v<float, decltype(norm2(b))>);
  57. tr.info("type of reduce_sqrm(floats)").test(std::is_same_v<float, decltype(reduce_sqrm(b))>);
  58. tr.info("type of sqrm(floats)").test(std::is_same_v<float, decltype(sqrm(b[0]))>);
  59. }
  60. tr.section("normv");
  61. {
  62. ra::Small<real, 2> a {1, 2};
  63. ra::Small<real, 2> b;
  64. b = normv(a);
  65. cout << "normv of lvalue: " << b << endl;
  66. tr.test_eq(b[0], 1./sqrt(5));
  67. tr.test_eq(b[1], 2./sqrt(5));
  68. b = normv(ra::Small<real, 2> {2, 1});
  69. cout << "normv of rvalue: "<< b << endl;
  70. tr.test_eq(b[0], 2./sqrt(5));
  71. tr.test_eq(b[1], 1./sqrt(5));
  72. }
  73. tr.section("reductions");
  74. {
  75. auto test_dot = [](auto && test) // TODO Use this for other real reductions.
  76. {
  77. test(ra::Small<complex, 2>{1, 2}, ra::Small<real, 2>{3, 4});
  78. test(ra::Small<real, 2>{1, 2}, ra::Small<complex, 2>{3, 4});
  79. test(ra::Small<real, 2>{1, 2}, ra::Small<real, 2>{3, 4});
  80. test(ra::Small<complex, 2>{1, 2}, ra::Small<complex, 2>{3, 4});
  81. test(ra::Big<complex, 1>{1, 2}, ra::Big<real, 1>{3, 4});
  82. test(ra::Big<real, 1>{1, 2}, ra::Big<complex, 1>{3, 4});
  83. test(ra::Big<real, 1>{1, 2}, ra::Big<real, 1>{3, 4});
  84. test(ra::Big<complex, 1>{1, 2}, ra::Big<complex, 1>{3, 4});
  85. test(ra::Small<complex, 2>{1, 2}, ra::Big<real, 1>{3, 4});
  86. test(ra::Small<real, 2>{1, 2}, ra::Big<complex, 1>{3, 4});
  87. test(ra::Small<real, 2>{1, 2}, ra::Big<real, 1>{3, 4});
  88. test(ra::Small<complex, 2>{1, 2}, ra::Big<complex, 1>{3, 4});
  89. test(ra::Big<complex, 1>{1, 2}, ra::Small<real, 2>{3, 4});
  90. test(ra::Big<real, 1>{1, 2}, ra::Small<complex, 2>{3, 4});
  91. test(ra::Big<real, 1>{1, 2}, ra::Small<real, 2>{3, 4});
  92. test(ra::Big<complex, 1>{1, 2}, ra::Small<complex, 2>{3, 4});
  93. };
  94. test_dot([&tr](auto && a, auto && b) { tr.test_eq(11., dot(a, b)); });
  95. test_dot([&tr](auto && a, auto && b) { tr.test_eq(11., cdot(a, b)); });
  96. test_dot([&tr](auto && a, auto && b) { tr.test_eq(sqrt(8.), norm2(a-b)); });
  97. test_dot([&tr](auto && a, auto && b) { tr.test_eq(8., reduce_sqrm(a-b)); });
  98. auto test_cdot = [](auto && test)
  99. {
  100. test(ra::Small<complex, 2>{1, complex(2, 3)}, ra::Small<complex, 2>{complex(4, 5), 6});
  101. test(ra::Big<complex, 1>{1, complex(2, 3)}, ra::Small<complex, 2>{complex(4, 5), 6});
  102. test(ra::Small<complex, 2>{1, complex(2, 3)}, ra::Big<complex, 1>{complex(4, 5), 6});
  103. test(ra::Big<complex, 1>{1, complex(2, 3)}, ra::Big<complex, 1>{complex(4, 5), 6});
  104. };
  105. complex value = conj(1.)*complex(4., 5.) + conj(complex(2., 3.))*6.;
  106. tr.test_eq(value, complex(16, -13));
  107. test_cdot([&tr](auto && a, auto && b) { tr.test_eq(complex(16., -13.), cdot(a, b)); });
  108. test_cdot([&tr](auto && a, auto && b) { tr.test_eq(sqrt(59.), norm2(a-b)); });
  109. test_cdot([&tr](auto && a, auto && b) { tr.test_eq(59., reduce_sqrm(a-b)); });
  110. auto test_sum = [](auto && test)
  111. {
  112. test(ra::Small<complex, 2>{complex(4, 5), 6});
  113. test(ra::Big<complex, 1>{complex(4, 5), 6});
  114. };
  115. test_sum([&tr](auto && a) { tr.test_eq(complex(10, 5), sum(a)); });
  116. test_sum([&tr](auto && a) { tr.test_eq(complex(24, 30), prod(a)); });
  117. test_sum([&tr](auto && a) { tr.test_eq(sqrt(41.), amax(abs(a))); });
  118. test_sum([&tr](auto && a) { tr.test_eq(6., amin(abs(a))); });
  119. }
  120. tr.section("amax/amin ignore NaN");
  121. {
  122. constexpr real QNAN = std::numeric_limits<real>::quiet_NaN();
  123. tr.test_eq(std::numeric_limits<real>::lowest(), std::max(std::numeric_limits<real>::lowest(), QNAN));
  124. tr.test_eq(-std::numeric_limits<real>::infinity(), amax(ra::Small<real, 3>(QNAN)));
  125. tr.test_eq(std::numeric_limits<real>::infinity(), amin(ra::Small<real, 3>(QNAN)));
  126. }
  127. // TODO these reductions require a destination argument; there are no exprs really.
  128. tr.section("to sum columns in crude ways");
  129. {
  130. ra::Unique<real, 2> A({100, 111}, ra::_0 - ra::_1);
  131. ra::Unique<real, 1> B({100}, 0.);
  132. for (int i=0, iend=A.len(0); i<iend; ++i) {
  133. B(i) = sum(A(i));
  134. }
  135. {
  136. ra::Unique<real, 1> C({100}, 0.);
  137. for_each([](auto & c, auto a) { c += a; }, C, A);
  138. tr.test_eq(B, C);
  139. }
  140. // This depends on matching frames for += just as for any other op, which is at odds with e.g. amend.
  141. {
  142. ra::Unique<real, 1> C({100}, 0.);
  143. C += A;
  144. tr.test_eq(B, C);
  145. }
  146. // Same as above.
  147. {
  148. ra::Unique<real, 1> C({100}, 0.);
  149. C = C + A;
  150. tr.test_eq(B, C);
  151. }
  152. // It cannot work with a lhs scalar value since += must be a class member, but it will work with a rank 0 array or with ra::Scalar.
  153. {
  154. ra::Unique<real, 0> C({}, 0.);
  155. C += A(0);
  156. tr.test_eq(B(0), C);
  157. real c(0.);
  158. ra::scalar(c) += A(0);
  159. tr.test_eq(B(0), c);
  160. }
  161. // This will fail because the assumed driver (ANY) has lower actual rank than the other argument. TODO check that it fails.
  162. // {
  163. // ra::Unique<real, 2> A({2, 3}, {1, 2, 3, 4 ,5, 6});
  164. // ra::Unique<real> C({}, 0.);
  165. // C += A(0);
  166. // }
  167. }
  168. tr.section("to sum rows in crude ways");
  169. {
  170. ra::Unique<real, 2> A({100, 111}, ra::_0 - ra::_1);
  171. ra::Unique<real, 1> B({111}, 0.);
  172. for (int j=0, jend=A.len(1); j<jend; ++j) {
  173. B(j) = sum(A(ra::all, j));
  174. }
  175. {
  176. ra::Unique<real, 1> C({111}, 0.);
  177. for_each([&C](auto && a) { C += a; }, A.iter<1>());
  178. tr.info("rhs iterator of rank > 0").test_eq(B, C);
  179. }
  180. {
  181. ra::Unique<real, 1> C({111}, 0.);
  182. for_each(ra::wrank<1, 1>([](auto & c, auto && a) { c += a; }), C, A);
  183. tr.info("rank conjuction").test_eq(B, C);
  184. }
  185. {
  186. ra::Unique<real, 1> C({111}, 0.);
  187. for_each(ra::wrank<1, 1>(ra::wrank<0, 0>([](auto & c, auto a) { c += a; })), C, A);
  188. tr.info("double rank conjunction").test_eq(B, C);
  189. }
  190. {
  191. ra::Unique<real, 1> C({111}, 0.);
  192. ra::scalar(C) += A.iter<1>();
  193. tr.info("scalar() and iterators of rank > 0").test_eq(B, C);
  194. }
  195. {
  196. ra::Unique<real, 1> C({111}, 0.);
  197. C.iter<1>() += A.iter<1>();
  198. tr.info("assign to iterators of rank > 0").test_eq(B, C);
  199. }
  200. }
  201. tr.section("reductions with amax");
  202. {
  203. ra::Big<int, 2> c({2, 3}, {1, 3, 2, 7, 1, 3});
  204. tr.info("max of rows").test_eq(ra::Big<int, 1> {3, 7}, map([](auto && a) { return amax(a); }, iter<1>(c)));
  205. ra::Big<int, 1> m({3}, 0);
  206. scalar(m) = max(scalar(m), iter<1>(c)); // requires inner forward in ra.hh: DEF_NAME_OP
  207. tr.info("max of columns I").test_eq(ra::Big<int, 1> {7, 3, 3}, m);
  208. m = 0;
  209. iter<1>(m) = max(iter<1>(m), iter<1>(c)); // FIXME
  210. tr.info("max of columns III [ma113]").test_eq(ra::Big<int, 1> {7, 3, 3}, m);
  211. m = 0;
  212. for_each([&m](auto && a) { m = max(m, a); }, iter<1>(c));
  213. tr.info("max of columns II").test_eq(ra::Big<int, 1> {7, 3, 3}, m);
  214. ra::Big<double, 1> q({0}, {});
  215. tr.info("amax default").test_eq(std::numeric_limits<double>::infinity(), amin(q));
  216. tr.info("amin default").test_eq(-std::numeric_limits<double>::infinity(), amax(q));
  217. }
  218. tr.section("vector-matrix reductions");
  219. {
  220. auto test = [&tr](auto t, auto s, auto r)
  221. {
  222. using T = decltype(t);
  223. using S = decltype(s);
  224. using R = decltype(r);
  225. S x[4] = {1, 2, 3, 4};
  226. ra::Small<T, 3, 4> a = ra::_0 - ra::_1;
  227. R y[3] = {99, 99, 99};
  228. ra::start(y) = ra::gemv(a, x);
  229. auto z = ra::gemv(a, x);
  230. tr.test_eq(ra::Small<R, 3> {-20, -10, 0}, y);
  231. tr.test_eq(ra::Small<R, 3> {-20, -10, 0}, z);
  232. };
  233. test(double(0), double(0), double(0));
  234. test(std::complex<double>(0), std::complex<double>(0), std::complex<double>(0));
  235. test(int(0), int(0), int(0));
  236. test(int(0), double(0), double(0));
  237. test(double(0), int(0), double(0));
  238. }
  239. {
  240. auto test = [&tr](auto t, auto s, auto r)
  241. {
  242. using T = decltype(t);
  243. using S = decltype(s);
  244. using R = decltype(r);
  245. S x[4] = {1, 2, 3, 4};
  246. ra::Small<T, 4, 3> a = ra::_1 - ra::_0;
  247. R y[3] = {99, 99, 99};
  248. ra::start(y) = ra::gevm(x, a);
  249. auto z = ra::gevm(x, a);
  250. tr.test_eq(ra::Small<R, 3> {-20, -10, 0}, y);
  251. tr.test_eq(ra::Small<R, 3> {-20, -10, 0}, z);
  252. };
  253. test(double(0), double(0), double(0));
  254. test(std::complex<double>(0), std::complex<double>(0), std::complex<double>(0));
  255. test(int(0), int(0), int(0));
  256. test(int(0), double(0), double(0));
  257. test(double(0), int(0), double(0));
  258. }
  259. tr.section("matrix-matrix reductions");
  260. {
  261. ra::Big<double, 2> A({0, 0}, 0.);
  262. ra::Big<double, 2> B({0, 0}, 0.);
  263. auto C = gemm(A, B);
  264. tr.test_eq(0, C.len(0));
  265. tr.test_eq(0, C.len(1));
  266. }
  267. tr.section("reference reductions");
  268. {
  269. ra::Big<double, 2> A({2, 3}, ra::_1 - ra::_0);
  270. double & mn = refmin(A);
  271. tr.test_eq(-1, mn);
  272. mn = -99;
  273. ra::Big<double, 2> B({2, 3}, ra::_1 - ra::_0);
  274. B(1, 0) = -99;
  275. tr.test_eq(B, A);
  276. double & mx = refmin(A, std::greater<double>());
  277. tr.test_eq(2, mx);
  278. mx = 0;
  279. B(0, 2) = 0;
  280. tr.test_eq(B, A);
  281. double & my = refmax(A);
  282. tr.test_eq(1, my);
  283. my = 77;
  284. B(0, 1) = 77;
  285. tr.test_eq(B, A);
  286. // cout << refmin(A+B) << endl; // compile error
  287. }
  288. return tr.summary();
  289. }