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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// SPDX-FileCopyrightText: Copyright Contributors to the Kokkos project
#include <sstream>
#include <iostream>
#include <limits>
#include <Kokkos_Macros.hpp>
#ifdef KOKKOS_ENABLE_EXPERIMENTAL_CXX20_MODULES
import kokkos.core;
#else
#include <Kokkos_Core.hpp>
#endif
#include <TestNonTrivialScalarTypes.hpp>
//--------------------------------------------------------------------------
namespace Test {
struct MyPair : Kokkos::pair<int, int> {};
} // namespace Test
template <>
struct Kokkos::reduction_identity<Test::MyPair> {
KOKKOS_FUNCTION static Test::MyPair min() {
return Test::MyPair{{INT_MAX, INT_MAX}};
}
};
namespace Test {
struct ReducerTag {};
template <class Scalar, class ExecSpace = Kokkos::DefaultExecutionSpace>
struct TestReducers {
struct SumFunctor {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(const int& i, Scalar& value) const { value += values(i); }
};
struct TeamSumFunctor {
using member_type = typename Kokkos::TeamPolicy<ExecSpace>::member_type;
KOKKOS_INLINE_FUNCTION
void operator()(const member_type& m, Scalar& value) const {
if (m.team_rank() == m.team_size() - 1) value += Scalar(1);
}
};
struct TeamSumNestedFunctor {
using member_type = typename Kokkos::TeamPolicy<ExecSpace>::member_type;
SumFunctor f;
int M, N;
Kokkos::View<Scalar*, ExecSpace> result;
TeamSumNestedFunctor(SumFunctor& f_, const int M_, const int N_,
Kokkos::View<Scalar*, ExecSpace> result_)
: f(f_), M(M_), N(N_), result(result_) {}
KOKKOS_INLINE_FUNCTION
void operator()(const member_type& m) const {
const int i = m.league_rank();
Scalar local_scalar;
Kokkos::Sum<Scalar, typename ExecSpace::memory_space> reducer_scalar(
local_scalar);
Kokkos::parallel_reduce(Kokkos::TeamThreadRange(m, N), f, reducer_scalar);
result(i) = local_scalar;
}
};
struct ProdFunctor {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(const int& i, Scalar& value) const { value *= values(i); }
};
struct MinFunctor {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(const int& i, Scalar& value) const {
if (values(i) < value) value = values(i);
}
};
struct MaxFunctor {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(const int& i, Scalar& value) const {
if (values(i) > value) value = values(i);
}
};
struct MinLocFunctor {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(
const int& i,
typename Kokkos::MinLoc<Scalar, int>::value_type& value) const {
if (values(i) < value.val) {
value.val = values(i);
value.loc = i;
}
}
};
struct MinLocFunctor2D {
Kokkos::View<const Scalar**, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(
const int& i, const int& j,
typename Kokkos::MinLoc<Scalar, MyPair>::value_type& value) const {
if (values(i, j) < value.val) {
value.val = values(i, j);
value.loc = {{i, j}};
}
}
};
struct MaxLocFunctor {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(
const int& i,
typename Kokkos::MaxLoc<Scalar, int>::value_type& value) const {
if (values(i) > value.val) {
value.val = values(i);
value.loc = i;
}
}
};
struct MaxLocFunctor2D {
Kokkos::View<const Scalar**, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(
const int& i, const int& j,
typename Kokkos::MaxLoc<Scalar, MyPair>::value_type& value) const {
if (values(i, j) > value.val) {
value.val = values(i, j);
value.loc = {{i, j}};
}
}
};
struct MinMaxLocFunctor {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(
const int& i,
typename Kokkos::MinMaxLoc<Scalar, int>::value_type& value) const {
if (values(i) > value.max_val) {
value.max_val = values(i);
value.max_loc = i;
}
if (values(i) < value.min_val) {
value.min_val = values(i);
value.min_loc = i;
}
}
};
struct MinMaxLocFunctor2D {
Kokkos::View<const Scalar**, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(
const int& i, const int& j,
typename Kokkos::MinMaxLoc<Scalar, MyPair>::value_type& value) const {
if (values(i, j) > value.max_val) {
value.max_val = values(i, j);
value.max_loc = {{i, j}};
}
if (values(i, j) < value.min_val) {
value.min_val = values(i, j);
value.min_loc = {{i, j}};
}
}
};
struct BAndFunctor {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(const int& i, Scalar& value) const {
value = value & values(i);
}
};
struct BOrFunctor {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(const int& i, Scalar& value) const {
value = value | values(i);
}
};
struct LAndFunctor {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(const int& i, Scalar& value) const {
value = value && values(i);
}
};
struct LOrFunctor {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(const int& i, Scalar& value) const {
value = value || values(i);
}
};
struct SumFunctorTag {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(const ReducerTag, const int& i, Scalar& value) const {
value += values(i);
}
};
struct ProdFunctorTag {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(const ReducerTag, const int& i, Scalar& value) const {
value *= values(i);
}
};
struct MinFunctorTag {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(const ReducerTag, const int& i, Scalar& value) const {
if (values(i) < value) value = values(i);
}
};
struct MaxFunctorTag {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(const ReducerTag, const int& i, Scalar& value) const {
if (values(i) > value) value = values(i);
}
};
struct MinLocFunctorTag {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(
const ReducerTag, const int& i,
typename Kokkos::MinLoc<Scalar, int>::value_type& value) const {
if (values(i) < value.val) {
value.val = values(i);
value.loc = i;
}
}
};
struct MaxLocFunctorTag {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(
const ReducerTag, const int& i,
typename Kokkos::MaxLoc<Scalar, int>::value_type& value) const {
if (values(i) > value.val) {
value.val = values(i);
value.loc = i;
}
}
};
struct MinMaxLocFunctorTag {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(
const ReducerTag, const int& i,
typename Kokkos::MinMaxLoc<Scalar, int>::value_type& value) const {
if (values(i) > value.max_val) {
value.max_val = values(i);
value.max_loc = i;
}
if (values(i) < value.min_val) {
value.min_val = values(i);
value.min_loc = i;
}
}
};
struct BAndFunctorTag {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(const ReducerTag, const int& i, Scalar& value) const {
value = value & values(i);
}
};
struct BOrFunctorTag {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(const ReducerTag, const int& i, Scalar& value) const {
value = value | values(i);
}
};
struct LAndFunctorTag {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(const ReducerTag, const int& i, Scalar& value) const {
value = value && values(i);
}
};
struct LOrFunctorTag {
Kokkos::View<const Scalar*, ExecSpace> values;
KOKKOS_INLINE_FUNCTION
void operator()(const ReducerTag, const int& i, Scalar& value) const {
value = value || values(i);
}
};
// get number of teams for TeamPolicy depending on the tested type
constexpr static int get_num_teams() {
if constexpr (sizeof(Scalar) == 1) {
return 126;
} else if constexpr (std::is_same_v<Scalar,
Kokkos::Experimental::bhalf_t>) {
return 256;
}
return 1024;
}
static void test_sum_team_policy(int N, SumFunctor f, Scalar reference_sum) {
Scalar sum_scalar;
Kokkos::View<Scalar, ExecSpace> sum_view("result");
Kokkos::deep_copy(sum_view, Scalar(1));
// Test team policy reduction
{
constexpr int num_teams = get_num_teams();
TeamSumFunctor tf;
// FIXME_OPENMPTARGET temporary restriction for team size to be at least
// 32
#ifdef KOKKOS_ENABLE_OPENMPTARGET
int team_size =
std::is_same<ExecSpace, Kokkos::Experimental::OpenMPTarget>::value
? 32
: 1;
#else
int team_size = 1;
#endif
auto team_pol = Kokkos::TeamPolicy<ExecSpace>(num_teams, team_size);
Kokkos::parallel_reduce(team_pol, tf, sum_view);
Kokkos::deep_copy(sum_scalar, sum_view);
ASSERT_EQ(sum_scalar, Scalar{num_teams}) << "num_teams: " << num_teams;
}
// Test TeamThreadRange level reduction with 0 work produces 0 result
{
const int league_size = 1;
Kokkos::View<Scalar*, ExecSpace> result("result", league_size);
TeamSumNestedFunctor tnf(f, league_size, 0, result);
// FIXME_OPENMPTARGET temporary restriction for team size to be at least
// 32
#ifdef KOKKOS_ENABLE_OPENMPTARGET
int team_size =
std::is_same<ExecSpace, Kokkos::Experimental::OpenMPTarget>::value
? 32
: 1;
#else
int team_size = 1;
#endif
auto team_pol = Kokkos::TeamPolicy<ExecSpace>(1, team_size);
Kokkos::parallel_for(team_pol, tnf);
auto result_h =
Kokkos::create_mirror_view_and_copy(Kokkos::HostSpace(), result);
ASSERT_EQ(result_h(0), Scalar{0}) << "N: " << N;
}
// Same test as above, but with inner reduction over N, and league_size=10
{
const int league_size = 10;
Kokkos::View<Scalar*, ExecSpace> result("result", league_size);
TeamSumNestedFunctor tnf(f, league_size, N, result);
// FIXME_OPENMPTARGET temporary restriction for team size to be at least
// 32
#ifdef KOKKOS_ENABLE_OPENMPTARGET
int initial_team_size =
std::is_same_v<ExecSpace, Kokkos::Experimental::OpenMPTarget> ? 32
: 1;
#else
int initial_team_size = 1;
#endif
auto team_size_max =
Kokkos::TeamPolicy<ExecSpace>(league_size, initial_team_size)
.team_size_max(tnf, Kokkos::ParallelForTag());
auto team_size = std::min(team_size_max, TEST_EXECSPACE().concurrency());
auto team_pol = Kokkos::TeamPolicy<ExecSpace>(league_size, team_size);
Kokkos::parallel_for(team_pol, tnf);
auto result_h =
Kokkos::create_mirror_view_and_copy(Kokkos::HostSpace(), result);
for (int i = 0; i < result_h.extent_int(0); ++i) {
ASSERT_EQ(result_h(i), reference_sum) << "N: " << N;
}
}
}
// Test that reducers return correct results with LaunchBounds value smaller
// than 32.
template <int N>
static void test_launch_bounds() {
Kokkos::View<Scalar*> v("", N);
Kokkos::deep_copy(v, Scalar(2));
// Functor
auto suml = KOKKOS_LAMBDA(const int i, Scalar& ret) { ret += v(i); };
auto prodl = KOKKOS_LAMBDA(const int i, Scalar& ret) { ret *= v(i); };
// This first reduction is necessary to ensure we trigger the bug #8443
Scalar ret;
Kokkos::parallel_reduce(Kokkos::RangePolicy(0, 1), suml,
Kokkos::Sum<Scalar>(ret));
EXPECT_EQ(ret, 2) << "N=" << N;
// Test that LaunchBounds<N> works with Sum
Kokkos::parallel_reduce(Kokkos::RangePolicy<Kokkos::LaunchBounds<N>>(0, N),
suml, Kokkos::Sum<Scalar>(ret));
EXPECT_EQ(ret, 2 * N) << "N=" << N;
// This test can't be run on int32 with N>= 31 because of overflow
if constexpr (!(std::is_integral_v<Scalar> && sizeof(Scalar) <= 32) ||
N < 31) {
// Test that LaunchBounds<N> works with Prod
Kokkos::parallel_reduce(
Kokkos::RangePolicy<Kokkos::LaunchBounds<N>>(0, N), prodl,
Kokkos::Prod<Scalar>(ret));
Scalar expected = Scalar(1ull << N);
EXPECT_EQ(ret, expected) << "N=" << N;
}
}
static void test_launch_bounds() {
test_launch_bounds<1>();
test_launch_bounds<5>();
test_launch_bounds<31>();
}
static void test_sum(int N) {
Kokkos::View<Scalar*, ExecSpace> values("Values", N);
auto h_values = Kokkos::create_mirror_view(values);
Scalar reference_sum = 0;
// FIXME spurious warnings like
// error: 'SR.14123' may be used uninitialized [-Werror=maybe-uninitialized]
#if defined(KOKKOS_COMPILER_GNU) && KOKKOS_COMPILER_GNU >= 1500
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
#endif
for (int i = 0; i < N; i++) {
int denom = sizeof(Scalar) <= 2 ? 10 : 100;
// clang-format off
// For bhalf, we start overflowing integer values at 2^8.
// after 2^8, we lose representation of odd numbers;
// after 2^9, we lose representation of odd and even numbers in position 1.
// after 2^10, we lose representation of odd and even numbers in position 1-3.
// after 2^11, we lose representation of odd and even numbers in position 1-7.
// ...
// Generally, for IEEE 754 floating point numbers, we start this overflow pattern at: 2^(num_fraction_bits+1).
// brain float has num_fraction_bits = 7.
// This mask addresses #4719 for N <= 51.
// The mask is not needed for N <= 25.
// clang-format on
int mask = std::is_same_v<Scalar, Kokkos::Experimental::bhalf_t> && N > 25
? (int)0xfffffffe
: (int)0xffffffff;
h_values(i) = (Scalar)((rand() % denom) & mask);
reference_sum += h_values(i);
}
// FIXME spurious warnings like
// error: 'SR.14123' may be used uninitialized [-Werror=maybe-uninitialized]
#if defined(KOKKOS_COMPILER_GNU) && KOKKOS_COMPILER_GNU >= 1500
#pragma GCC diagnostic pop
#endif
Kokkos::deep_copy(values, h_values);
SumFunctor f;
f.values = values;
SumFunctorTag f_tag;
f_tag.values = values;
Scalar init = 0;
{
Scalar sum_scalar = Scalar(1);
Kokkos::Sum<Scalar> reducer_scalar(sum_scalar);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, 0), f,
reducer_scalar);
ASSERT_EQ(sum_scalar, init) << "N: " << N;
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_scalar);
ASSERT_EQ(sum_scalar, reference_sum) << "N: " << N;
sum_scalar = init;
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace, ReducerTag>(0, N),
f_tag, reducer_scalar);
ASSERT_EQ(sum_scalar, reference_sum) << "N: " << N;
Scalar sum_scalar_view = reducer_scalar.reference();
ASSERT_EQ(sum_scalar_view, reference_sum) << "N: " << N;
}
// FIXME_OPENACC - custom reduction with TeamPolicy is not yet implemented.
#ifdef KOKKOS_ENABLE_OPENACC
if constexpr (!std::is_same_v<ExecSpace, Kokkos::Experimental::OpenACC>)
test_sum_team_policy(N, f, reference_sum);
#endif
{
Kokkos::View<Scalar, Kokkos::HostSpace> sum_view("View");
sum_view() = Scalar(1);
Kokkos::Sum<Scalar> reducer_view(sum_view);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, 0), f,
reducer_view);
Kokkos::fence();
Scalar sum_view_scalar = sum_view();
ASSERT_EQ(sum_view_scalar, init) << "N: " << N;
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_view);
Kokkos::fence();
sum_view_scalar = sum_view();
ASSERT_EQ(sum_view_scalar, reference_sum) << "N: " << N;
Scalar sum_view_view = reducer_view.reference();
ASSERT_EQ(sum_view_view, reference_sum) << "N: " << N;
}
{
Kokkos::View<Scalar, typename ExecSpace::memory_space> sum_view("View");
Kokkos::deep_copy(sum_view, Scalar(1));
Kokkos::Sum<Scalar, typename ExecSpace::memory_space> reducer_view(
sum_view);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, 0), f,
reducer_view);
Kokkos::fence();
Scalar sum_view_scalar;
Kokkos::deep_copy(sum_view_scalar, sum_view);
ASSERT_EQ(sum_view_scalar, init) << "N: " << N;
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_view);
Kokkos::fence();
Kokkos::deep_copy(sum_view_scalar, sum_view);
ASSERT_EQ(sum_view_scalar, reference_sum) << "N: " << N;
}
}
static void test_prod(int N) {
Kokkos::View<Scalar*, ExecSpace> values("Values", N);
auto h_values = Kokkos::create_mirror_view(values);
Scalar reference_prod = 1;
for (int i = 0; i < N; i++) {
h_values(i) = (Scalar)(rand() % 4 + 1);
reference_prod *= h_values(i);
}
Kokkos::deep_copy(values, h_values);
ProdFunctor f;
f.values = values;
ProdFunctorTag f_tag;
f_tag.values = values;
Scalar init = 1;
{
Scalar prod_scalar = Scalar(0);
Kokkos::Prod<Scalar> reducer_scalar(prod_scalar);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, 0), f,
reducer_scalar);
ASSERT_EQ(prod_scalar, init);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_scalar);
ASSERT_EQ(prod_scalar, reference_prod);
prod_scalar = init;
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace, ReducerTag>(0, N),
f_tag, reducer_scalar);
ASSERT_EQ(prod_scalar, reference_prod);
Scalar prod_scalar_view = reducer_scalar.reference();
ASSERT_EQ(prod_scalar_view, reference_prod);
}
{
Kokkos::View<Scalar, Kokkos::HostSpace> prod_view("View");
prod_view() = Scalar(0);
Kokkos::Prod<Scalar> reducer_view(prod_view);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, 0), f,
reducer_view);
Kokkos::fence();
Scalar prod_view_scalar = prod_view();
ASSERT_EQ(prod_view_scalar, init);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_view);
Kokkos::fence();
prod_view_scalar = prod_view();
ASSERT_EQ(prod_view_scalar, reference_prod);
Scalar prod_view_view = reducer_view.reference();
ASSERT_EQ(prod_view_view, reference_prod);
}
{
Kokkos::View<Scalar, typename ExecSpace::memory_space> prod_view("View");
Kokkos::deep_copy(prod_view, Scalar(0));
Kokkos::Prod<Scalar, typename ExecSpace::memory_space> reducer_view(
prod_view);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, 0), f,
reducer_view);
Kokkos::fence();
Scalar prod_view_scalar;
Kokkos::deep_copy(prod_view_scalar, prod_view);
ASSERT_EQ(prod_view_scalar, init);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_view);
Kokkos::fence();
Kokkos::deep_copy(prod_view_scalar, prod_view);
ASSERT_EQ(prod_view_scalar, reference_prod);
}
}
static void test_min(int N) {
Kokkos::View<Scalar*, ExecSpace> values("Values", N);
auto h_values = Kokkos::create_mirror_view(values);
Scalar reference_min = std::numeric_limits<Scalar>::max();
for (int i = 0; i < N; i++) {
h_values(i) = (Scalar)(rand() % 100000);
if (h_values(i) < reference_min) reference_min = h_values(i);
}
Kokkos::deep_copy(values, h_values);
MinFunctor f;
f.values = values;
MinFunctorTag f_tag;
f_tag.values = values;
Scalar init = std::numeric_limits<Scalar>::max();
{
Scalar min_scalar = init;
Kokkos::Min<Scalar> reducer_scalar(min_scalar);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_scalar);
ASSERT_EQ(min_scalar, reference_min);
min_scalar = init;
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace, ReducerTag>(0, N),
f_tag, reducer_scalar);
ASSERT_EQ(min_scalar, reference_min);
Scalar min_scalar_view = reducer_scalar.reference();
ASSERT_EQ(min_scalar_view, reference_min);
}
{
Kokkos::View<Scalar, Kokkos::HostSpace> min_view("View");
min_view() = init;
Kokkos::Min<Scalar> reducer_view(min_view);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_view);
Kokkos::fence();
Scalar min_view_scalar = min_view();
ASSERT_EQ(min_view_scalar, reference_min);
Scalar min_view_view = reducer_view.reference();
ASSERT_EQ(min_view_view, reference_min);
}
}
static void test_max(int N) {
Kokkos::View<Scalar*, ExecSpace> values("Values", N);
auto h_values = Kokkos::create_mirror_view(values);
Scalar reference_max = std::numeric_limits<Scalar>::min();
for (int i = 0; i < N; i++) {
h_values(i) = (Scalar)(rand() % 100000 + 1);
if (h_values(i) > reference_max) reference_max = h_values(i);
}
Kokkos::deep_copy(values, h_values);
MaxFunctor f;
f.values = values;
MaxFunctorTag f_tag;
f_tag.values = values;
Scalar init = std::numeric_limits<Scalar>::min();
{
Scalar max_scalar = init;
Kokkos::Max<Scalar> reducer_scalar(max_scalar);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_scalar);
ASSERT_EQ(max_scalar, reference_max);
max_scalar = init;
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace, ReducerTag>(0, N),
f_tag, reducer_scalar);
ASSERT_EQ(max_scalar, reference_max);
Scalar max_scalar_view = reducer_scalar.reference();
ASSERT_EQ(max_scalar_view, reference_max);
}
{
Kokkos::View<Scalar, Kokkos::HostSpace> max_view("View");
max_view() = init;
Kokkos::Max<Scalar> reducer_view(max_view);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_view);
Kokkos::fence();
Scalar max_view_scalar = max_view();
ASSERT_EQ(max_view_scalar, reference_max);
Scalar max_view_view = reducer_view.reference();
ASSERT_EQ(max_view_view, reference_max);
}
}
static void test_minloc(int N) {
using value_type = typename Kokkos::MinLoc<Scalar, int>::value_type;
Kokkos::View<Scalar*, ExecSpace> values("Values", N);
auto h_values = Kokkos::create_mirror_view(values);
Scalar reference_min = std::numeric_limits<Scalar>::max();
int reference_loc = -1;
for (int i = 0; i < N; i++) {
h_values(i) = (Scalar)(rand() % 100000 + 2);
if (h_values(i) < reference_min) {
reference_min = h_values(i);
reference_loc = i;
} else if (h_values(i) == reference_min) {
// Make min unique.
h_values(i) += Scalar(1);
}
}
Kokkos::deep_copy(values, h_values);
MinLocFunctor f;
f.values = values;
MinLocFunctorTag f_tag;
f_tag.values = values;
{
value_type min_scalar;
Kokkos::MinLoc<Scalar, int> reducer_scalar(min_scalar);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_scalar);
ASSERT_EQ(min_scalar.val, reference_min);
ASSERT_EQ(min_scalar.loc, reference_loc);
min_scalar = value_type();
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace, ReducerTag>(0, N),
f_tag, reducer_scalar);
ASSERT_EQ(min_scalar.val, reference_min);
ASSERT_EQ(min_scalar.loc, reference_loc);
value_type min_scalar_view = reducer_scalar.reference();
ASSERT_EQ(min_scalar_view.val, reference_min);
ASSERT_EQ(min_scalar_view.loc, reference_loc);
}
{
Kokkos::View<value_type, Kokkos::HostSpace> min_view("View");
Kokkos::MinLoc<Scalar, int> reducer_view(min_view);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_view);
Kokkos::fence();
value_type min_view_scalar = min_view();
ASSERT_EQ(min_view_scalar.val, reference_min);
ASSERT_EQ(min_view_scalar.loc, reference_loc);
value_type min_view_view = reducer_view.reference();
ASSERT_EQ(min_view_view.val, reference_min);
ASSERT_EQ(min_view_view.loc, reference_loc);
}
}
static void test_minloc_2d(int N) {
using reducer_type = Kokkos::MinLoc<Scalar, MyPair>;
using value_type = typename reducer_type::value_type;
Kokkos::View<Scalar**, ExecSpace> values("Values", N, N);
auto h_values = Kokkos::create_mirror_view(values);
Scalar reference_min = std::numeric_limits<Scalar>::max();
MyPair reference_loc = {{-1, -1}};
for (int i = 0; i < N; i++)
for (int j = 0; j < N; j++) {
h_values(i, j) = (Scalar)(rand() % 100000 + 2);
if (h_values(i, j) < reference_min) {
reference_min = h_values(i, j);
reference_loc = {{i, j}};
} else if (h_values(i, j) == reference_min) {
// Make min unique.
h_values(i, j) += Scalar(1);
}
}
Kokkos::deep_copy(values, h_values);
MinLocFunctor2D f;
f.values = values;
{
value_type min_scalar;
reducer_type reducer_scalar(min_scalar);
Kokkos::parallel_reduce(
Kokkos::MDRangePolicy<Kokkos::Rank<2>, ExecSpace>({0, 0}, {N, N}), f,
reducer_scalar);
ASSERT_EQ(min_scalar.val, reference_min);
ASSERT_EQ(min_scalar.loc, reference_loc);
}
}
static void test_minloc_loc_init(int N) {
using reducer_type = Kokkos::MinLoc<Scalar, int>;
using reducer_value_type = typename reducer_type::value_type;
Kokkos::View<Scalar*, ExecSpace> values("Values", N);
auto h_values = Kokkos::create_mirror_view(values);
for (int i = 0; i < N; ++i) {
h_values(i) = Kokkos::reduction_identity<Scalar>::min();
}
Kokkos::deep_copy(values, h_values);
reducer_value_type value_loc{0, -1};
Kokkos::parallel_reduce(
Kokkos::RangePolicy<ExecSpace>(0, N),
KOKKOS_LAMBDA(const int i, reducer_value_type& update) {
auto x = values(i);
if (i % 2 == 0)
return;
else if (x <= update.val) {
update.val = x;
update.loc = i;
}
},
reducer_type(value_loc));
ASSERT_EQ(value_loc.val, h_values(0));
ASSERT_GE(value_loc.loc, 0);
ASSERT_LT(value_loc.loc, N);
}
static void test_maxloc(int N) {
using value_type = typename Kokkos::MaxLoc<Scalar, int>::value_type;
Kokkos::View<Scalar*, ExecSpace> values("Values", N);
auto h_values = Kokkos::create_mirror_view(values);
Scalar reference_max = std::numeric_limits<Scalar>::min();
int reference_loc = -1;
for (int i = 0; i < N; i++) {
h_values(i) = (Scalar)(rand() % 100000 + 2);
if (h_values(i) > reference_max) {
reference_max = h_values(i);
reference_loc = i;
} else if (h_values(i) == reference_max) {
// Make max unique.
h_values(i) -= Scalar(1);
}
}
Kokkos::deep_copy(values, h_values);
MaxLocFunctor f;
f.values = values;
MaxLocFunctorTag f_tag;
f_tag.values = values;
{
value_type max_scalar;
Kokkos::MaxLoc<Scalar, int> reducer_scalar(max_scalar);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_scalar);
ASSERT_EQ(max_scalar.val, reference_max);
ASSERT_EQ(max_scalar.loc, reference_loc);
max_scalar = value_type();
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace, ReducerTag>(0, N),
f_tag, reducer_scalar);
ASSERT_EQ(max_scalar.val, reference_max);
ASSERT_EQ(max_scalar.loc, reference_loc);
value_type max_scalar_view = reducer_scalar.reference();
ASSERT_EQ(max_scalar_view.val, reference_max);
ASSERT_EQ(max_scalar_view.loc, reference_loc);
}
{
Kokkos::View<value_type, Kokkos::HostSpace> max_view("View");
Kokkos::MaxLoc<Scalar, int> reducer_view(max_view);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_view);
Kokkos::fence();
value_type max_view_scalar = max_view();
ASSERT_EQ(max_view_scalar.val, reference_max);
ASSERT_EQ(max_view_scalar.loc, reference_loc);
value_type max_view_view = reducer_view.reference();
ASSERT_EQ(max_view_view.val, reference_max);
ASSERT_EQ(max_view_view.loc, reference_loc);
}
}
static void test_maxloc_2d(int N) {
using reducer_type = Kokkos::MaxLoc<Scalar, MyPair>;
using value_type = typename reducer_type::value_type;
Kokkos::View<Scalar**, ExecSpace> values("Values", N, N);
auto h_values = Kokkos::create_mirror_view(values);
Scalar reference_max = std::numeric_limits<Scalar>::min();
MyPair reference_loc = {{-1, -1}};
for (int i = 0; i < N; ++i)
for (int j = 0; j < N; ++j) {
h_values(i, j) = (Scalar)(rand() % 100000 + 2);
if (h_values(i, j) > reference_max) {
reference_max = h_values(i, j);
reference_loc = {{i, j}};
} else if (h_values(i, j) == reference_max) {
// Make max unique.
h_values(i, j) -= Scalar(1);
}
}
Kokkos::deep_copy(values, h_values);
MaxLocFunctor2D f;
f.values = values;
{
value_type max_scalar;
reducer_type reducer_scalar(max_scalar);
Kokkos::parallel_reduce(
Kokkos::MDRangePolicy<Kokkos::Rank<2>, ExecSpace>({0, 0}, {N, N}), f,
reducer_scalar);
ASSERT_EQ(max_scalar.val, reference_max);
ASSERT_EQ(max_scalar.loc, reference_loc);
}
}
static void test_maxloc_loc_init(int N) {
using reducer_type = Kokkos::MaxLoc<Scalar, int>;
using reducer_value_type = typename reducer_type::value_type;
Kokkos::View<Scalar*, ExecSpace> values("Values", N);
auto h_values = Kokkos::create_mirror_view(values);
for (int i = 0; i < N; ++i) {
h_values(i) = Kokkos::reduction_identity<Scalar>::max();
}
Kokkos::deep_copy(values, h_values);
reducer_value_type value_loc{0, -1};
Kokkos::parallel_reduce(
Kokkos::RangePolicy<ExecSpace>(0, N),
KOKKOS_LAMBDA(const int i, reducer_value_type& update) {
auto x = values(i);
if (i % 2 == 0)
return;
else if (x >= update.val) {
update.val = x;
update.loc = i;
}
},
reducer_type(value_loc));
ASSERT_EQ(value_loc.val, h_values(0));
ASSERT_GE(value_loc.loc, 0);
ASSERT_LT(value_loc.loc, N);
}
static void test_minmaxloc(int N) {
using value_type = typename Kokkos::MinMaxLoc<Scalar, int>::value_type;
Kokkos::View<Scalar*, ExecSpace> values("Values", N);
auto h_values = Kokkos::create_mirror_view(values);
Scalar reference_max = std::numeric_limits<Scalar>::min();
Scalar reference_min = std::numeric_limits<Scalar>::max();
int reference_minloc = -1;
int reference_maxloc = -1;
for (int i = 0; i < N; i++) {
h_values(i) = (Scalar)(rand() % 100000 + 2);
}
for (int i = 0; i < N; i++) {
if (h_values(i) > reference_max) {
reference_max = h_values(i);
reference_maxloc = i;
} else if (h_values(i) == reference_max) {
// Make max unique.
h_values(i) -= Scalar(1);
}
}
for (int i = 0; i < N; i++) {
if (h_values(i) < reference_min) {
reference_min = h_values(i);
reference_minloc = i;
} else if (h_values(i) == reference_min) {
// Make min unique.
h_values(i) += Scalar(1);
}
}
Kokkos::deep_copy(values, h_values);
MinMaxLocFunctor f;
f.values = values;
MinMaxLocFunctorTag f_tag;
f_tag.values = values;
{
value_type minmax_scalar;
Kokkos::MinMaxLoc<Scalar, int> reducer_scalar(minmax_scalar);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_scalar);
ASSERT_EQ(minmax_scalar.min_val, reference_min);
for (int i = 0; i < N; i++) {
if ((i == minmax_scalar.min_loc) && (h_values(i) == reference_min)) {
reference_minloc = i;
}
}
ASSERT_EQ(minmax_scalar.min_loc, reference_minloc);
ASSERT_EQ(minmax_scalar.max_val, reference_max);
for (int i = 0; i < N; i++) {
if ((i == minmax_scalar.max_loc) && (h_values(i) == reference_max)) {
reference_maxloc = i;
}
}
ASSERT_EQ(minmax_scalar.max_loc, reference_maxloc);
minmax_scalar = value_type();
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace, ReducerTag>(0, N),
f_tag, reducer_scalar);
ASSERT_EQ(minmax_scalar.min_val, reference_min);
for (int i = 0; i < N; i++) {
if ((i == minmax_scalar.min_loc) && (h_values(i) == reference_min)) {
reference_minloc = i;
}
}
ASSERT_EQ(minmax_scalar.min_loc, reference_minloc);
ASSERT_EQ(minmax_scalar.max_val, reference_max);
for (int i = 0; i < N; i++) {
if ((i == minmax_scalar.max_loc) && (h_values(i) == reference_max)) {
reference_maxloc = i;
}
}
ASSERT_EQ(minmax_scalar.max_loc, reference_maxloc);
value_type minmax_scalar_view = reducer_scalar.reference();
ASSERT_EQ(minmax_scalar_view.min_val, reference_min);
ASSERT_EQ(minmax_scalar_view.min_loc, reference_minloc);
ASSERT_EQ(minmax_scalar_view.max_val, reference_max);
ASSERT_EQ(minmax_scalar_view.max_loc, reference_maxloc);
}
{
Kokkos::View<value_type, Kokkos::HostSpace> minmax_view("View");
Kokkos::MinMaxLoc<Scalar, int> reducer_view(minmax_view);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_view);
Kokkos::fence();
value_type minmax_view_scalar = minmax_view();
ASSERT_EQ(minmax_view_scalar.min_val, reference_min);
ASSERT_EQ(minmax_view_scalar.min_loc, reference_minloc);
ASSERT_EQ(minmax_view_scalar.max_val, reference_max);
ASSERT_EQ(minmax_view_scalar.max_loc, reference_maxloc);
value_type minmax_view_view = reducer_view.reference();
ASSERT_EQ(minmax_view_view.min_val, reference_min);
ASSERT_EQ(minmax_view_view.min_loc, reference_minloc);
ASSERT_EQ(minmax_view_view.max_val, reference_max);
ASSERT_EQ(minmax_view_view.max_loc, reference_maxloc);
}
}
static void test_minmaxloc_2d(int N) {
using reducer_type = Kokkos::MinMaxLoc<Scalar, MyPair>;
using value_type = typename reducer_type::value_type;
Kokkos::View<Scalar**, ExecSpace> values("Values", N, N);
auto h_values = Kokkos::create_mirror_view(values);
Scalar reference_max = std::numeric_limits<Scalar>::min();
Scalar reference_min = std::numeric_limits<Scalar>::max();
MyPair reference_minloc = {{-1, -1}};
MyPair reference_maxloc = {{-1, -1}};
for (int i = 0; i < N; i++)
for (int j = 0; j < N; j++) {
h_values(i, j) = (Scalar)(rand() % 100000 + 2);
}
for (int i = 0; i < N; i++)
for (int j = 0; j < N; j++) {
if (h_values(i, j) > reference_max) {
reference_max = h_values(i, j);
reference_maxloc = {{i, j}};
} else if (h_values(i, j) == reference_max) {
// Make max unique.
h_values(i, j) -= Scalar(1);
}
}
for (int i = 0; i < N; i++)
for (int j = 0; j < N; j++) {
if (h_values(i, j) < reference_min) {
reference_min = h_values(i, j);
reference_minloc = {{i, j}};
} else if (h_values(i, j) == reference_min) {
// Make min unique.
h_values(i, j) += Scalar(1);
}
}
Kokkos::deep_copy(values, h_values);
MinMaxLocFunctor2D f;
f.values = values;
{
value_type minmax_scalar;
reducer_type reducer_scalar(minmax_scalar);
Kokkos::parallel_reduce(
Kokkos::MDRangePolicy<Kokkos::Rank<2>, ExecSpace>({0, 0}, {N, N}), f,
reducer_scalar);
ASSERT_EQ(minmax_scalar.min_val, reference_min);
for (int i = 0; i < N; i++)
for (int j = 0; j < N; j++) {
if ((minmax_scalar.min_loc == MyPair{{i, j}}) &&
(h_values(i, j) == reference_min)) {
reference_minloc = {{i, j}};
}
}
ASSERT_EQ(minmax_scalar.min_loc, reference_minloc);
ASSERT_EQ(minmax_scalar.max_val, reference_max);
for (int i = 0; i < N; i++)
for (int j = 0; j < N; j++) {
if ((minmax_scalar.max_loc == MyPair{{i, j}}) &&
(h_values(i, j) == reference_max)) {
reference_maxloc = {{i, j}};
}
}
ASSERT_EQ(minmax_scalar.max_loc, reference_maxloc);
}
}
static void test_minmaxloc_loc_init(int N) {
using reducer_type = Kokkos::MinMaxLoc<Scalar, int>;
using reducer_value_type = typename reducer_type::value_type;
Kokkos::View<Scalar*, ExecSpace> values("Values", N);
auto h_values = Kokkos::create_mirror_view(values);
auto functor = KOKKOS_LAMBDA(const int i, reducer_value_type& update) {
auto x = values(i);
if (i % 2 == 0) return;
if (x <= update.min_val) {
update.min_val = x;
update.min_loc = i;
}
if (x >= update.max_val) {
update.max_val = x;
update.max_loc = i;
}
};
{
for (int i = 0; i < N; ++i) {
h_values(i) = Kokkos::reduction_identity<Scalar>::min();
}
Kokkos::deep_copy(values, h_values);
reducer_value_type value_loc{0, 0, -1, -1};
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), functor,
reducer_type(value_loc));
ASSERT_EQ(value_loc.min_val, h_values(0));
ASSERT_EQ(value_loc.max_val, h_values(0));
ASSERT_GE(value_loc.min_loc, 0);
ASSERT_LT(value_loc.min_loc, N);
ASSERT_GE(value_loc.max_loc, 0);
ASSERT_LT(value_loc.max_loc, N);
}
{
for (int i = 0; i < N; ++i) {
h_values(i) = Kokkos::reduction_identity<Scalar>::max();
}
Kokkos::deep_copy(values, h_values);
reducer_value_type value_loc{0, 0, -1, -1};
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), functor,
reducer_type(value_loc));
ASSERT_EQ(value_loc.min_val, h_values(0));
ASSERT_EQ(value_loc.max_val, h_values(0));
ASSERT_GE(value_loc.min_loc, 0);
ASSERT_LT(value_loc.min_loc, N);
ASSERT_GE(value_loc.max_loc, 0);
ASSERT_LT(value_loc.max_loc, N);
}
}
static void test_minmaxfirstlastloc_loc_init(int N) {
using reducer_type = Kokkos::MinMaxFirstLastLoc<Scalar, int>;
using reducer_value_type = typename reducer_type::value_type;
Kokkos::View<Scalar*, ExecSpace> values("Values", N);
auto h_values = Kokkos::create_mirror_view(values);
auto functor = KOKKOS_LAMBDA(const int i, reducer_value_type& update) {
auto x = values(i);
if (i % 2 == 0) return;
if (x <= update.min_val) {
update.min_val = x;
update.min_loc = i;
}
if (x >= update.max_val) {
update.max_val = x;
update.max_loc = i;
}
};
{
for (int i = 0; i < N; ++i) {
h_values(i) = Kokkos::reduction_identity<Scalar>::min();
}
Kokkos::deep_copy(values, h_values);
reducer_value_type value_loc{0, 0, -1, -1};
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), functor,
reducer_type(value_loc));
ASSERT_EQ(value_loc.min_val, h_values(0));
ASSERT_EQ(value_loc.max_val, h_values(0));
ASSERT_GE(value_loc.min_loc, 0);
ASSERT_LT(value_loc.min_loc, N);
ASSERT_GE(value_loc.max_loc, 0);
ASSERT_LT(value_loc.max_loc, N);
}
{
for (int i = 0; i < N; ++i) {
h_values(i) = Kokkos::reduction_identity<Scalar>::max();
}
Kokkos::deep_copy(values, h_values);
reducer_value_type value_loc{0, 0, -1, -1};
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), functor,
reducer_type(value_loc));
ASSERT_EQ(value_loc.min_val, h_values(0));
ASSERT_EQ(value_loc.max_val, h_values(0));
ASSERT_GE(value_loc.min_loc, 0);
ASSERT_LT(value_loc.min_loc, N);
ASSERT_GE(value_loc.max_loc, 0);
ASSERT_LT(value_loc.max_loc, N);
}
}
static void test_minfirstloc_loc_init(int N) {
using reducer_type = Kokkos::MinFirstLoc<Scalar, int>;
using reducer_value_type = typename reducer_type::value_type;
Kokkos::View<Scalar*, ExecSpace> values("Values", N);
auto h_values = Kokkos::create_mirror_view(values);
for (int i = 0; i < N; ++i) {
h_values(i) = Kokkos::reduction_identity<Scalar>::min();
}
Kokkos::deep_copy(values, h_values);
reducer_value_type value_loc{0, -1};
Kokkos::parallel_reduce(
Kokkos::RangePolicy<ExecSpace>(0, N),
KOKKOS_LAMBDA(const int i, reducer_value_type& update) {
auto x = values(i);
if (i % 2 == 0)
return;
else if (x <= update.val) {
update.val = x;
update.loc = i;
}
},
reducer_type(value_loc));
ASSERT_EQ(value_loc.val, h_values(0));
ASSERT_GE(value_loc.loc, 0);
ASSERT_LT(value_loc.loc, N);
}
static void test_maxfirstloc_loc_init(int N) {
using reducer_type = Kokkos::MaxFirstLoc<Scalar, int>;
using reducer_value_type = typename reducer_type::value_type;
Kokkos::View<Scalar*, ExecSpace> values("Values", N);
auto h_values = Kokkos::create_mirror_view(values);
for (int i = 0; i < N; ++i) {
h_values(i) = Kokkos::reduction_identity<Scalar>::max();
}
Kokkos::deep_copy(values, h_values);
reducer_value_type value_loc{0, -1};
Kokkos::parallel_reduce(
Kokkos::RangePolicy<ExecSpace>(0, N),
KOKKOS_LAMBDA(const int i, reducer_value_type& update) {
auto x = values(i);
if (i % 2 == 0)
return;
else if (x >= update.val) {
update.val = x;
update.loc = i;
}
},
reducer_type(value_loc));
ASSERT_EQ(value_loc.val, h_values(0));
ASSERT_GE(value_loc.loc, 0);
ASSERT_LT(value_loc.loc, N);
}
static void test_BAnd(int N) {
Kokkos::View<Scalar*, ExecSpace> values("Values", N);
auto h_values = Kokkos::create_mirror_view(values);
Scalar reference_band = Scalar() | (~Scalar());
for (int i = 0; i < N; i++) {
h_values(i) = (Scalar)(rand() % 100000 + 1);
reference_band = reference_band & h_values(i);
}
Kokkos::deep_copy(values, h_values);
BAndFunctor f;
f.values = values;
BAndFunctorTag f_tag;
f_tag.values = values;
Scalar init = Scalar() | (~Scalar());
{
Scalar band_scalar = init;
Kokkos::BAnd<Scalar> reducer_scalar(band_scalar);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_scalar);
ASSERT_EQ(band_scalar, reference_band);
band_scalar = init;
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace, ReducerTag>(0, N),
f_tag, reducer_scalar);
ASSERT_EQ(band_scalar, reference_band);
Scalar band_scalar_view = reducer_scalar.reference();
ASSERT_EQ(band_scalar_view, reference_band);
}
{
Kokkos::View<Scalar, Kokkos::HostSpace> band_view("View");
band_view() = init;
Kokkos::BAnd<Scalar> reducer_view(band_view);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_view);
Kokkos::fence();
Scalar band_view_scalar = band_view();
ASSERT_EQ(band_view_scalar, reference_band);
Scalar band_view_view = reducer_view.reference();
ASSERT_EQ(band_view_view, reference_band);
}
}
static void test_BOr(int N) {
Kokkos::View<Scalar*, ExecSpace> values("Values", N);
auto h_values = Kokkos::create_mirror_view(values);
Scalar reference_bor = Scalar() & (~Scalar());
for (int i = 0; i < N; i++) {
h_values(i) = (Scalar)((rand() % 100000 + 1) * 2);
reference_bor = reference_bor | h_values(i);
}
Kokkos::deep_copy(values, h_values);
BOrFunctor f;
f.values = values;
BOrFunctorTag f_tag;
f_tag.values = values;
Scalar init = Scalar() & (~Scalar());
{
Scalar bor_scalar = init;
Kokkos::BOr<Scalar> reducer_scalar(bor_scalar);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_scalar);
ASSERT_EQ(bor_scalar, reference_bor);
bor_scalar = init;
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace, ReducerTag>(0, N),
f_tag, reducer_scalar);
ASSERT_EQ(bor_scalar, reference_bor);
Scalar bor_scalar_view = reducer_scalar.reference();
ASSERT_EQ(bor_scalar_view, reference_bor);
}
{
Kokkos::View<Scalar, Kokkos::HostSpace> bor_view("View");
bor_view() = init;
Kokkos::BOr<Scalar> reducer_view(bor_view);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_view);
Kokkos::fence();
Scalar bor_view_scalar = bor_view();
ASSERT_EQ(bor_view_scalar, reference_bor);
Scalar bor_view_view = reducer_view.reference();
ASSERT_EQ(bor_view_view, reference_bor);
}
}
static void test_LAnd(int N) {
Kokkos::View<Scalar*, ExecSpace> values("Values", N);
auto h_values = Kokkos::create_mirror_view(values);
Scalar reference_land = 1;
for (int i = 0; i < N; i++) {
h_values(i) = (Scalar)(rand() % 2);
reference_land = reference_land && h_values(i);
}
Kokkos::deep_copy(values, h_values);
LAndFunctor f;
f.values = values;
LAndFunctorTag f_tag;
f_tag.values = values;
Scalar init = 1;
{
Scalar land_scalar = init;
Kokkos::LAnd<Scalar> reducer_scalar(land_scalar);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_scalar);
ASSERT_EQ(land_scalar, reference_land);
land_scalar = init;
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace, ReducerTag>(0, N),
f_tag, reducer_scalar);
ASSERT_EQ(land_scalar, reference_land);
Scalar land_scalar_view = reducer_scalar.reference();
ASSERT_EQ(land_scalar_view, reference_land);
}
{
Kokkos::View<Scalar, Kokkos::HostSpace> land_view("View");
land_view() = init;
Kokkos::LAnd<Scalar> reducer_view(land_view);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_view);
Kokkos::fence();
Scalar land_view_scalar = land_view();
ASSERT_EQ(land_view_scalar, reference_land);
Scalar land_view_view = reducer_view.reference();
ASSERT_EQ(land_view_view, reference_land);
}
}
static void test_LOr(int N) {
Kokkos::View<Scalar*, ExecSpace> values("Values", N);
auto h_values = Kokkos::create_mirror_view(values);
Scalar reference_lor = 0;
for (int i = 0; i < N; i++) {
h_values(i) = (Scalar)(rand() % 2);
reference_lor = reference_lor || h_values(i);
}
Kokkos::deep_copy(values, h_values);
LOrFunctor f;
f.values = values;
LOrFunctorTag f_tag;
f_tag.values = values;
Scalar init = 0;
{
Scalar lor_scalar = init;
Kokkos::LOr<Scalar> reducer_scalar(lor_scalar);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_scalar);
ASSERT_EQ(lor_scalar, reference_lor);
lor_scalar = init;
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace, ReducerTag>(0, N),
f_tag, reducer_scalar);
ASSERT_EQ(lor_scalar, reference_lor);
Scalar lor_scalar_view = reducer_scalar.reference();
ASSERT_EQ(lor_scalar_view, reference_lor);
}
{
Kokkos::View<Scalar, Kokkos::HostSpace> lor_view("View");
lor_view() = init;
Kokkos::LOr<Scalar> reducer_view(lor_view);
Kokkos::parallel_reduce(Kokkos::RangePolicy<ExecSpace>(0, N), f,
reducer_view);
Kokkos::fence();
Scalar lor_view_scalar = lor_view();
ASSERT_EQ(lor_view_scalar, reference_lor);
Scalar lor_view_view = reducer_view.reference();
ASSERT_EQ(lor_view_view, reference_lor);
}
}
static void execute_float() {
test_launch_bounds();
test_sum(10001);
test_prod(35);
test_min(10003);
test_minloc(10003);
test_minloc_loc_init(3);
// FIXME_OPENACC - custom reduction with MDRangePolicy is not yet implemented.
#if !defined(KOKKOS_ENABLE_OPENACC)
// FIXME_OPENMPTARGET requires custom reductions.
#if !defined(KOKKOS_ENABLE_OPENMPTARGET)
test_minloc_2d(100);
#endif
#endif
test_max(10007);
test_maxloc(10007);
test_maxloc_loc_init(3);
// FIXME_OPENACC - custom reduction with MDRangePolicy is not yet implemented.
#if !defined(KOKKOS_ENABLE_OPENACC)
// FIXME_OPENMPTARGET requires custom reductions.
#if !defined(KOKKOS_ENABLE_OPENMPTARGET)
test_maxloc_2d(100);
#endif
#endif
#if defined(KOKKOS_ENABLE_OPENMPTARGET) // FIXME_OPENMPTARGET custom reducers
test_minmaxloc(10007);
#else
test_minmaxloc(10007);
test_minmaxloc_loc_init(3);
// FIXME_OPENACC - custom reduction with MDRangePolicy is not yet implemented.
#if !defined(KOKKOS_ENABLE_OPENACC)
test_minmaxloc_2d(100);
#endif
test_minmaxfirstlastloc_loc_init(3);
test_minfirstloc_loc_init(3);
test_maxfirstloc_loc_init(3);
#endif
}
// NOTE test_prod generates N random numbers between 1 and 4.
// Although unlikely, the test below could still in principle overflow.
// For reference log(numeric_limits<int>)/log(4) is 15.5
static void execute_integer() {
test_launch_bounds();
test_sum(10001);
test_prod(sizeof(Scalar) > 4 ? 35 : 19); // avoid int overflow (see above)
test_min(10003);
test_minloc(10003);
test_minloc_loc_init(3);
#if defined(KOKKOS_ENABLE_CUDA)
if (!std::is_same_v<ExecSpace, Kokkos::Cuda>)
#endif
// FIXME_OPENACC - custom reduction with MDRangePolicy is not yet
// implemented.
#if !defined(KOKKOS_ENABLE_OPENACC)
// FIXME_OPENMPTARGET requires custom reductions.
#if !defined(KOKKOS_ENABLE_OPENMPTARGET)
test_minloc_2d(100);
#endif
#endif
test_max(10007);
test_maxloc(10007);
test_maxloc_loc_init(3);
#if defined(KOKKOS_ENABLE_CUDA)
if (!std::is_same_v<ExecSpace, Kokkos::Cuda>)
#endif
// FIXME_OPENACC - custom reduction with MDRangePolicy is not yet implemented.
#if !defined(KOKKOS_ENABLE_OPENACC)
// FIXME_OPENMPTARGET requires custom reductions.
#if !defined(KOKKOS_ENABLE_OPENMPTARGET)
test_maxloc_2d(100);
#endif
#endif
#if defined(KOKKOS_ENABLE_OPENMPTARGET) // FIXME_OPENMPTARGET custom reducers
test_minmaxloc(10007);
#else
test_minmaxloc(10007);
test_minmaxloc_loc_init(3);
// FIXME_OPENACC - custom reduction with MDRangePolicy is not yet implemented.
#if !defined(KOKKOS_ENABLE_OPENACC)
test_minmaxloc_2d(100);
#endif
test_minmaxfirstlastloc_loc_init(3);
test_minfirstloc_loc_init(3);
test_maxfirstloc_loc_init(3);
#endif
test_BAnd(35);
test_BOr(35);
test_LAnd(35);
test_LOr(35);
}
static void execute_basic() {
test_sum(10001);
test_prod(35);
}
static void execute_bool() {
test_LAnd(10001);
test_LOr(35);
}
};
} // namespace Test
|