This file is indexed.

/usr/include/trilinos/KokkosExp_View.hpp is in libtrilinos-kokkos-dev 12.4.2-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
/*
//@HEADER
// ************************************************************************
// 
//                        Kokkos v. 2.0
//              Copyright (2014) Sandia Corporation
// 
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
// 
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Questions? Contact  H. Carter Edwards (hcedwar@sandia.gov)
// 
// ************************************************************************
//@HEADER
*/

#ifndef KOKKOS_EXPERIMENTAL_VIEW_HPP
#define KOKKOS_EXPERIMENTAL_VIEW_HPP

#include <string>
#include <type_traits>
#include <initializer_list>

#include <Kokkos_Core_fwd.hpp>
#include <Kokkos_HostSpace.hpp>
#include <Kokkos_MemoryTraits.hpp>

//----------------------------------------------------------------------------
//----------------------------------------------------------------------------

namespace Kokkos {
namespace Experimental {
namespace Impl {

template< class DataType >
struct ViewArrayAnalysis ;

template< class DataType , class ValueType , class ArrayLayout >
struct ViewDataAnalysis ;

template< class , class = void , typename Enable = void >
class ViewMapping { enum { is_assignable = false }; };

template< class DstMemorySpace , class SrcMemorySpace >
struct DeepCopy ;

} /* namespace Impl */
} /* namespace Experimental */
} /* namespace Kokkos */

//----------------------------------------------------------------------------
//----------------------------------------------------------------------------

namespace Kokkos {
namespace Experimental {

/** \class ViewTraits
 *  \brief Traits class for accessing attributes of a View.
 *
 * This is an implementation detail of View.  It is only of interest
 * to developers implementing a new specialization of View.
 *
 * Template argument permutations:
 *   - View< DataType , void         , void         , void >
 *   - View< DataType , Space        , void         , void >
 *   - View< DataType , Space        , MemoryTraits , void >
 *   - View< DataType , Space        , void         , MemoryTraits >
 *   - View< DataType , ArrayLayout  , void         , void >
 *   - View< DataType , ArrayLayout  , Space        , void >
 *   - View< DataType , ArrayLayout  , MemoryTraits , void   >
 *   - View< DataType , ArrayLayout  , Space        , MemoryTraits >
 *   - View< DataType , MemoryTraits , void         , void  >
 */

template< class DataType ,
          class Arg1 = void ,
          class Arg2 = void ,
          class Arg3 = void >
class ViewTraits {
private:

  // Layout, Space, and MemoryTraits are optional
  // but need to appear in that order. That means Layout
  // can only be Arg1, Space can be Arg1 or Arg2, and
  // MemoryTraits can be Arg1, Arg2 or Arg3

  enum { Arg1IsLayout = Kokkos::Impl::is_array_layout<Arg1>::value };

  enum { Arg1IsSpace = Kokkos::Impl::is_space<Arg1>::value };
  enum { Arg2IsSpace = Kokkos::Impl::is_space<Arg2>::value };

  enum { Arg1IsMemoryTraits = Kokkos::Impl::is_memory_traits<Arg1>::value };
  enum { Arg2IsMemoryTraits = Kokkos::Impl::is_memory_traits<Arg2>::value };
  enum { Arg3IsMemoryTraits = Kokkos::Impl::is_memory_traits<Arg3>::value };

  enum { Arg1IsVoid = std::is_same< Arg1 , void >::value };
  enum { Arg2IsVoid = std::is_same< Arg2 , void >::value };
  enum { Arg3IsVoid = std::is_same< Arg3 , void >::value };

  static_assert( 1 == Arg1IsLayout + Arg1IsSpace + Arg1IsMemoryTraits + Arg1IsVoid
               , "Template argument #1 must be layout, space, traits, or void" );

  // If Arg1 is Layout       then Arg2 is Space, MemoryTraits, or void
  // If Arg1 is Space        then Arg2 is MemoryTraits or void
  // If Arg1 is MemoryTraits then Arg2 is void
  // If Arg1 is Void         then Arg2 is void

  static_assert( ( Arg1IsLayout       && ( 1 == Arg2IsSpace + Arg2IsMemoryTraits + Arg2IsVoid ) ) ||
                 ( Arg1IsSpace        && ( 0 == Arg2IsSpace ) && ( 1 == Arg2IsMemoryTraits + Arg2IsVoid ) ) ||
                 ( Arg1IsMemoryTraits && Arg2IsVoid ) ||
                 ( Arg1IsVoid         && Arg2IsVoid )
               , "Template argument #2 must be space, traits, or void" );

  // Arg3 is MemoryTraits or void and at most one argument is MemoryTraits
  static_assert( ( 1 == Arg3IsMemoryTraits + Arg3IsVoid ) &&
                 ( Arg1IsMemoryTraits + Arg2IsMemoryTraits + Arg3IsMemoryTraits <= 1 )
               , "Template argument #3 must be traits or void" );

  typedef
    typename std::conditional< Arg1IsSpace , Arg1 ,
    typename std::conditional< Arg2IsSpace , Arg2 , Kokkos::DefaultExecutionSpace
    >::type >::type::execution_space
     ExecutionSpace ;

  typedef 
    typename std::conditional< Arg1IsSpace , Arg1 ,
    typename std::conditional< Arg2IsSpace , Arg2 , Kokkos::DefaultExecutionSpace
    >::type >::type::memory_space 
      MemorySpace ;

  typedef
    typename Kokkos::Impl::is_space<
    typename std::conditional< Arg1IsSpace , Arg1 ,
    typename std::conditional< Arg2IsSpace , Arg2 , Kokkos::DefaultExecutionSpace
    >::type >::type >::host_mirror_space
      HostMirrorSpace ;

  typedef
    typename std::conditional< Arg1IsLayout , Arg1 , typename ExecutionSpace::array_layout >::type
      ArrayLayout ;

  // Arg1, Arg2, or Arg3 may be memory traits
  typedef
    typename std::conditional< Arg1IsMemoryTraits , Arg1 ,
    typename std::conditional< Arg2IsMemoryTraits , Arg2 ,
    typename std::conditional< Arg3IsMemoryTraits , Arg3 , MemoryManaged
    >::type >::type >::type
      MemoryTraits ;

  // Analyze data type's array properties
  typedef Kokkos::Experimental::Impl::ViewArrayAnalysis< DataType >  array_analysis ;

  // Analyze data type's properties with opportunity to specialize based upon the array value type
  typedef Kokkos::Experimental::Impl::
    ViewDataAnalysis< DataType
                    , typename array_analysis::non_const_value_type
                    , ArrayLayout
                    >  data_analysis ;

public:

  //------------------------------------
  // Data type traits:

  typedef typename data_analysis::type            data_type ;
  typedef typename data_analysis::const_type      const_data_type ;
  typedef typename data_analysis::non_const_type  non_const_data_type ;

  //------------------------------------
  // Compatible array of trivial type traits:

  typedef typename data_analysis::array_scalar_type            array_scalar_type ;
  typedef typename data_analysis::const_array_scalar_type      const_array_scalar_type ;
  typedef typename data_analysis::non_const_array_scalar_type  non_const_array_scalar_type ;

  //------------------------------------
  // Value type traits:

  typedef typename data_analysis::value_type            value_type ;
  typedef typename data_analysis::const_value_type      const_value_type ;
  typedef typename data_analysis::non_const_value_type  non_const_value_type ;

  //------------------------------------
  // Mapping traits:

  typedef ArrayLayout                         array_layout ;
  typedef typename data_analysis::dimension   dimension ;
  typedef typename data_analysis::specialize  specialize /* mapping specialization tag */ ;

  enum { rank         = dimension::rank };
  enum { rank_dynamic = dimension::rank_dynamic };

  //------------------------------------
  // Execution space, memory space, memory access traits, and host mirror space.

  typedef ExecutionSpace                      execution_space ;
  typedef MemorySpace                         memory_space ;
  typedef Device<ExecutionSpace,MemorySpace>  device_type ;
  typedef MemoryTraits                        memory_traits ;
  typedef HostMirrorSpace                     host_mirror_space ;

  typedef typename memory_space::size_type  size_type ;

  enum { is_hostspace      = std::is_same< memory_space , HostSpace >::value };
  enum { is_managed        = memory_traits::Unmanaged    == 0 };
  enum { is_random_access  = memory_traits::RandomAccess == 1 };

  //------------------------------------
};

/** \class View
 *  \brief View to an array of data.
 *
 * A View represents an array of one or more dimensions.
 * For details, please refer to Kokkos' tutorial materials.
 *
 * \section Kokkos_View_TemplateParameters Template parameters
 *
 * This class has both required and optional template parameters.  The
 * \c DataType parameter must always be provided, and must always be
 * first. The parameters \c Arg1Type, \c Arg2Type, and \c Arg3Type are
 * placeholders for different template parameters.  The default value
 * of the fifth template parameter \c Specialize suffices for most use
 * cases.  When explaining the template parameters, we won't refer to
 * \c Arg1Type, \c Arg2Type, and \c Arg3Type; instead, we will refer
 * to the valid categories of template parameters, in whatever order
 * they may occur.
 *
 * Valid ways in which template arguments may be specified:
 *   - View< DataType , Space >
 *   - View< DataType , Space  ,         MemoryTraits >
 *   - View< DataType , Space  , void  , MemoryTraits >
 *   - View< DataType , Layout , Space >
 *   - View< DataType , Layout , Space , MemoryTraits >
 *
 * \tparam DataType (required) This indicates both the type of each
 *   entry of the array, and the combination of compile-time and
 *   run-time array dimension(s).  For example, <tt>double*</tt>
 *   indicates a one-dimensional array of \c double with run-time
 *   dimension, and <tt>int*[3]</tt> a two-dimensional array of \c int
 *   with run-time first dimension and compile-time second dimension
 *   (of 3).  In general, the run-time dimensions (if any) must go
 *   first, followed by zero or more compile-time dimensions.  For
 *   more examples, please refer to the tutorial materials.
 *
 * \tparam Space (required) The memory space.
 *
 * \tparam Layout (optional) The array's layout in memory.  For
 *   example, LayoutLeft indicates a column-major (Fortran style)
 *   layout, and LayoutRight a row-major (C style) layout.  If not
 *   specified, this defaults to the preferred layout for the
 *   <tt>Space</tt>.
 *
 * \tparam MemoryTraits (optional) Assertion of the user's intended
 *   access behavior.  For example, RandomAccess indicates read-only
 *   access with limited spatial locality, and Unmanaged lets users
 *   wrap externally allocated memory in a View without automatic
 *   deallocation.
 *
 * \section Kokkos_View_MT MemoryTraits discussion
 *
 * \subsection Kokkos_View_MT_Interp MemoryTraits interpretation depends on Space
 *
 * Some \c MemoryTraits options may have different interpretations for
 * different \c Space types.  For example, with the Cuda device,
 * \c RandomAccess tells Kokkos to fetch the data through the texture
 * cache, whereas the non-GPU devices have no such hardware construct.
 *
 * \subsection Kokkos_View_MT_PrefUse Preferred use of MemoryTraits
 *
 * Users should defer applying the optional \c MemoryTraits parameter
 * until the point at which they actually plan to rely on it in a
 * computational kernel.  This minimizes the number of template
 * parameters exposed in their code, which reduces the cost of
 * compilation.  Users may always assign a View without specified
 * \c MemoryTraits to a compatible View with that specification.
 * For example:
 * \code
 * // Pass in the simplest types of View possible.
 * void
 * doSomething (View<double*, Cuda> out,
 *              View<const double*, Cuda> in)
 * {
 *   // Assign the "generic" View in to a RandomAccess View in_rr.
 *   // Note that RandomAccess View objects must have const data.
 *   View<const double*, Cuda, RandomAccess> in_rr = in;
 *   // ... do something with in_rr and out ...
 * }
 * \endcode
 */
template< class DataType
        , class Arg1 = void /* ArrayLayout, SpaceType, or MemoryTraits */
        , class Arg2 = void /* SpaceType or MemoryTraits */
        , class Arg3 = void /* MemoryTraits */ >
class View ;

} /* namespace Experimental */
} /* namespace Kokkos */

//----------------------------------------------------------------------------
//----------------------------------------------------------------------------

#include <impl/KokkosExp_ViewMapping.hpp>
#include <impl/KokkosExp_ViewAllocProp.hpp>
#include <impl/KokkosExp_ViewArray.hpp>

//----------------------------------------------------------------------------
//----------------------------------------------------------------------------

namespace Kokkos {
namespace Experimental {

namespace {

constexpr Kokkos::Experimental::Impl::ALL_t
  ALL = Kokkos::Experimental::Impl::ALL_t();

constexpr Kokkos::Experimental::Impl::WithoutInitializing_t
  WithoutInitializing = Kokkos::Experimental::Impl::WithoutInitializing_t();

constexpr Kokkos::Experimental::Impl::AllowPadding_t       
  AllowPadding        = Kokkos::Experimental::Impl::AllowPadding_t();

}

/** \brief  Create View allocation parameter bundle from argument list.
 *
 *  Valid argument list members are:
 *    1) label as a "string" or std::string
 *    2) memory space instance of the View::memory_space type
 *    3) execution space instance compatible with the View::memory_space
 *    4) Kokkos::WithoutInitializing to bypass initialization
 *    4) Kokkos::AllowPadding to allow allocation to pad dimensions for memory alignment
 */
template< class ... Args >
inline
Kokkos::Experimental::Impl::ViewAllocProp< Args ... >
view_alloc( Args ... args )
{
  return Kokkos::Experimental::Impl::ViewAllocProp< Args ... >( args ... );
}

} /* namespace Experimental */
} /* namespace Kokkos */

//----------------------------------------------------------------------------
//----------------------------------------------------------------------------

namespace Kokkos {
namespace Experimental {

/**\brief  Each R? template argument designates whether the subview argument is a range */
template< class V
        , bool R0 = false , bool R1 = false , bool R2 = false , bool R3 = false
        , bool R4 = false , bool R5 = false , bool R6 = false , bool R7 = false >
using Subview = typename Kokkos::Experimental::Impl::SubviewType< V, R0 , R1 , R2 , R3 , R4 , R5 , R6 , R7 >::type ;

template< class DataType , class Arg1 , class Arg2 , class Arg3 >
class View : public ViewTraits< DataType , Arg1 , Arg2 , Arg3 > {
private:

  template< class , class , class , class > friend class View ;

  typedef ViewTraits< DataType , Arg1 , Arg2 , Arg3 >          traits ;
  typedef Kokkos::Experimental::Impl::ViewMapping< traits >    map_type ;
  typedef Kokkos::Experimental::Impl::SharedAllocationTracker  track_type ;

  track_type  m_track ;
  map_type    m_map ;

public:

  //----------------------------------------
  /** \brief  Compatible view of array of scalar types */
  typedef View< typename traits::array_scalar_type ,
                typename traits::array_layout ,
                typename traits::device_type ,
                typename traits::memory_traits > 
    array_type ;

  /** \brief  Compatible view of const data type */
  typedef View< typename traits::const_data_type ,
                typename traits::array_layout ,
                typename traits::device_type ,
                typename traits::memory_traits > 
    const_type ;

  /** \brief  Compatible view of non-const data type */
  typedef View< typename traits::non_const_data_type ,
                    typename traits::array_layout ,
                    typename traits::device_type ,
                    typename traits::memory_traits > 
    non_const_type ;

  /** \brief  Compatible HostMirror view */
  typedef View< typename traits::non_const_data_type ,
                typename traits::array_layout ,
                typename traits::host_mirror_space ,
                void >
    HostMirror ;

  //----------------------------------------
  // Domain dimensions

  enum { Rank = map_type::Rank };

  KOKKOS_INLINE_FUNCTION constexpr size_t dimension_0() const { return m_map.dimension_0(); }
  KOKKOS_INLINE_FUNCTION constexpr size_t dimension_1() const { return m_map.dimension_1(); }
  KOKKOS_INLINE_FUNCTION constexpr size_t dimension_2() const { return m_map.dimension_2(); }
  KOKKOS_INLINE_FUNCTION constexpr size_t dimension_3() const { return m_map.dimension_3(); }
  KOKKOS_INLINE_FUNCTION constexpr size_t dimension_4() const { return m_map.dimension_4(); }
  KOKKOS_INLINE_FUNCTION constexpr size_t dimension_5() const { return m_map.dimension_5(); }
  KOKKOS_INLINE_FUNCTION constexpr size_t dimension_6() const { return m_map.dimension_6(); }
  KOKKOS_INLINE_FUNCTION constexpr size_t dimension_7() const { return m_map.dimension_7(); }

  KOKKOS_INLINE_FUNCTION constexpr size_t stride_0() const { return m_map.stride_0(); }
  KOKKOS_INLINE_FUNCTION constexpr size_t stride_1() const { return m_map.stride_1(); }
  KOKKOS_INLINE_FUNCTION constexpr size_t stride_2() const { return m_map.stride_2(); }
  KOKKOS_INLINE_FUNCTION constexpr size_t stride_3() const { return m_map.stride_3(); }
  KOKKOS_INLINE_FUNCTION constexpr size_t stride_4() const { return m_map.stride_4(); }
  KOKKOS_INLINE_FUNCTION constexpr size_t stride_5() const { return m_map.stride_5(); }
  KOKKOS_INLINE_FUNCTION constexpr size_t stride_6() const { return m_map.stride_6(); }
  KOKKOS_INLINE_FUNCTION constexpr size_t stride_7() const { return m_map.stride_7(); }

  //----------------------------------------
  // Range span is the span which contains all members.

  typedef typename map_type::reference_type  reference_type ;

  enum { reference_type_is_lvalue_reference = std::is_lvalue_reference< reference_type >::value };

  KOKKOS_INLINE_FUNCTION constexpr size_t span() const { return m_map.span(); }
  KOKKOS_INLINE_FUNCTION constexpr bool   span_is_contiguous() const { return m_map.span_is_contiguous(); }
  KOKKOS_INLINE_FUNCTION constexpr typename traits::value_type * data() const { return m_map.data(); }

  // Deprecated, use 'span_is_contigous()' instead
  KOKKOS_INLINE_FUNCTION constexpr bool   is_contiguous() const { return m_map.span_is_contiguous(); }
  // Deprecated, use 'data()' instead
  KOKKOS_INLINE_FUNCTION constexpr typename traits::value_type * ptr_on_device() const { return m_map.data(); }

  //----------------------------------------
  // Allow specializations to query their specialized map

  KOKKOS_INLINE_FUNCTION
  const map_type & implementation_map() const { return m_map ; }

  //----------------------------------------

private:

  typedef typename
    std::conditional< Rank == 0 , reference_type
      , Kokkos::Experimental::Impl::Error_view_scalar_reference_to_non_scalar_view >::type 
    scalar_operator_reference_type ;

  typedef typename
    std::conditional< Rank == 0 , const int
      , Kokkos::Experimental::Impl::Error_view_scalar_reference_to_non_scalar_view >::type 
    scalar_operator_index_type ;

public:

  // Rank == 0

  KOKKOS_FORCEINLINE_FUNCTION
  scalar_operator_reference_type operator()() const
    {
      KOKKOS_ASSERT_VIEW_MAPPING_ACCESS( typename traits::memory_space, m_map, Rank, 0, 0, 0, 0, 0, 0, 0, 0 );
      return scalar_operator_reference_type( m_map.reference() );
    }

  KOKKOS_FORCEINLINE_FUNCTION
  reference_type
  operator()( scalar_operator_index_type i0
            , const int i1 = 0 , const int i2 = 0 , const int i3 = 0
            , const int i4 = 0 , const int i5 = 0 , const int i6 = 0 , const int i7 = 0 ) const
    {
      KOKKOS_ASSERT_VIEW_MAPPING_ACCESS( typename traits::memory_space, m_map, Rank, i0, i1, i2, i3, i4, i5, i6, i7 );
      return m_map.reference();
    }

  // Rank == 1

  template< typename I0 >
  KOKKOS_FORCEINLINE_FUNCTION
  typename std::enable_if<( Rank == 1 && std::is_integral<I0>::value
                          ), reference_type >::type
  operator[]( const I0 & i0 ) const
    {
      KOKKOS_ASSERT_VIEW_MAPPING_ACCESS( typename traits::memory_space, m_map, Rank, i0, 0, 0, 0, 0, 0, 0, 0 );
      return m_map.reference(i0);
    }

  template< typename I0 >
  KOKKOS_FORCEINLINE_FUNCTION
  typename std::enable_if<( Rank == 1 && std::is_integral<I0>::value
                          ), reference_type >::type
  operator()( const I0 & i0 ) const
    {
      KOKKOS_ASSERT_VIEW_MAPPING_ACCESS( typename traits::memory_space, m_map, Rank, i0, 0, 0, 0, 0, 0, 0, 0 );
      return m_map.reference(i0);
    }

  template< typename I0 >
  KOKKOS_FORCEINLINE_FUNCTION
  reference_type
  operator()( const I0 & i0
            , typename std::enable_if<( Rank == 1 && std::is_integral<I0>::value ), const int >::type i1
            , const int i2 = 0 , const int i3 = 0
            , const int i4 = 0 , const int i5 = 0 , const int i6 = 0 , const int i7 = 0 ) const
    {
      KOKKOS_ASSERT_VIEW_MAPPING_ACCESS( typename traits::memory_space, m_map, Rank, i0, i1, i2, i3, i4, i5, i6, i7 );
      return m_map.reference(i0);
    }

  // Rank == 2

  template< typename I0 , typename I1 >
  KOKKOS_FORCEINLINE_FUNCTION
  typename std::enable_if<( Rank == 2 &&
                            std::is_integral<I0>::value &&
                            std::is_integral<I1>::value
                          ), reference_type >::type
  operator()( const I0 & i0 , const I1 & i1 ) const
    {
      KOKKOS_ASSERT_VIEW_MAPPING_ACCESS( typename traits::memory_space, m_map, Rank, i0, i1, 0, 0, 0, 0, 0, 0 );
      return m_map.reference(i0,i1);
    }

  template< typename I0 , typename I1 >
  KOKKOS_FORCEINLINE_FUNCTION
  reference_type
  operator()( const I0 & i0 , const I1 & i1
            , typename std::enable_if<( Rank == 2 &&
                                        std::is_integral<I0>::value &&
                                        std::is_integral<I1>::value
                                      ), const int >::type i2
            , const int i3 = 0
            , const int i4 = 0 , const int i5 = 0 , const int i6 = 0 , const int i7 = 0 ) const
    {
      KOKKOS_ASSERT_VIEW_MAPPING_ACCESS( typename traits::memory_space, m_map, Rank, i0, i1, i2, i3, i4, i5, i6, i7 );
      return m_map.reference(i0,i1);
    }

  // Rank == 3

  template< typename I0 , typename I1 , typename I2 >
  KOKKOS_FORCEINLINE_FUNCTION
  typename std::enable_if<( Rank == 3 &&
                            std::is_integral<I0>::value &&
                            std::is_integral<I1>::value &&
                            std::is_integral<I2>::value 
                          ), reference_type >::type
  operator()( const I0 & i0 , const I1 & i1 , const I2 & i2 ) const
    {
      KOKKOS_ASSERT_VIEW_MAPPING_ACCESS( typename traits::memory_space, m_map, Rank, i0, i1, i2, 0, 0, 0, 0, 0 );
      return m_map.reference(i0,i1,i2);
    }

  template< typename I0 , typename I1 , typename I2 >
  KOKKOS_FORCEINLINE_FUNCTION
  reference_type
  operator()( const I0 & i0 , const I1 & i1 , const I2 & i2
            , typename std::enable_if<( Rank == 3 &&
                                        std::is_integral<I0>::value &&
                                        std::is_integral<I1>::value &&
                                        std::is_integral<I2>::value
                                      ), const int >::type i3
            , const int i4 = 0 , const int i5 = 0 , const int i6 = 0 , const int i7 = 0 ) const
    {
      KOKKOS_ASSERT_VIEW_MAPPING_ACCESS( typename traits::memory_space, m_map, Rank, i0, i1, i2, i3, i4, i5, i6, i7 );
      return m_map.reference(i0,i1,i2);
    }

  // Rank == 4

  template< typename I0 , typename I1 , typename I2 , typename I3 >
  KOKKOS_FORCEINLINE_FUNCTION
  typename std::enable_if<( Rank == 4 &&
                            std::is_integral<I0>::value &&
                            std::is_integral<I1>::value &&
                            std::is_integral<I2>::value &&
                            std::is_integral<I3>::value
                          ), reference_type >::type
  operator()( const I0 & i0 , const I1 & i1 , const I2 & i2 , const I3 & i3 ) const
    {
      KOKKOS_ASSERT_VIEW_MAPPING_ACCESS( typename traits::memory_space, m_map, Rank, i0, i1, i2, i3, 0, 0, 0, 0 );
      return m_map.reference(i0,i1,i2,i3);
    }

  template< typename I0 , typename I1 , typename I2 , typename I3 >
  KOKKOS_FORCEINLINE_FUNCTION
  reference_type
  operator()( const I0 & i0 , const I1 & i1 , const I2 & i2 , const I3 & i3
            , typename std::enable_if<( Rank == 4 &&
                                        std::is_integral<I0>::value &&
                                        std::is_integral<I1>::value &&
                                        std::is_integral<I2>::value &&
                                        std::is_integral<I3>::value
                                      ), const int >::type i4
            , const int i5 = 0 , const int i6 = 0 , const int i7 = 0 ) const
    {
      KOKKOS_ASSERT_VIEW_MAPPING_ACCESS( typename traits::memory_space, m_map, Rank, i0, i1, i2, i3, i4, i5, i6, i7 );
      return m_map.reference(i0,i1,i2,i3);
    }

  // Rank == 5

  template< typename I0 , typename I1 , typename I2 , typename I3
          , typename I4 >
  KOKKOS_FORCEINLINE_FUNCTION
  typename std::enable_if<( Rank == 5 &&
                            std::is_integral<I0>::value &&
                            std::is_integral<I1>::value &&
                            std::is_integral<I2>::value &&
                            std::is_integral<I3>::value &&
                            std::is_integral<I4>::value 
                          ), reference_type >::type
  operator()( const I0 & i0 , const I1 & i1 , const I2 & i2 , const I3 & i3
            , const I4 & i4 ) const
    {
      KOKKOS_ASSERT_VIEW_MAPPING_ACCESS( typename traits::memory_space, m_map, Rank, i0, i1, i2, i3, i4, 0, 0, 0 );
      return m_map.reference(i0,i1,i2,i3,i4);
    }

  template< typename I0 , typename I1 , typename I2 , typename I3
          , typename I4 >
  KOKKOS_FORCEINLINE_FUNCTION
  reference_type
  operator()( const I0 & i0 , const I1 & i1 , const I2 & i2 , const I3 & i3
            , const I4 & i4
            , typename std::enable_if<( Rank == 5 &&
                                        std::is_integral<I0>::value &&
                                        std::is_integral<I1>::value &&
                                        std::is_integral<I2>::value &&
                                        std::is_integral<I3>::value &&
                                        std::is_integral<I4>::value
                                      ), const int >::type i5
            , const int i6 = 0 , const int i7 = 0 ) const
    {
      KOKKOS_ASSERT_VIEW_MAPPING_ACCESS( typename traits::memory_space, m_map, Rank, i0, i1, i2, i3, i4, i5, i6, i7 );
      return m_map.reference(i0,i1,i2,i3,i4);
    }

  // Rank == 6

  template< typename I0 , typename I1 , typename I2 , typename I3
          , typename I4 , typename I5 >
  KOKKOS_FORCEINLINE_FUNCTION
  typename std::enable_if<( Rank == 6 &&
                            std::is_integral<I0>::value &&
                            std::is_integral<I1>::value &&
                            std::is_integral<I2>::value &&
                            std::is_integral<I3>::value &&
                            std::is_integral<I4>::value &&
                            std::is_integral<I5>::value
                          ), reference_type >::type
  operator()( const I0 & i0 , const I1 & i1 , const I2 & i2 , const I3 & i3
            , const I4 & i4 , const I5 & i5 ) const
    {
      KOKKOS_ASSERT_VIEW_MAPPING_ACCESS( typename traits::memory_space, m_map, Rank, i0, i1, i2, i3, i4, i5, 0, 0 );
      return m_map.reference(i0,i1,i2,i3,i4,i5);
    }

  template< typename I0 , typename I1 , typename I2 , typename I3
          , typename I4 , typename I5 >
  KOKKOS_FORCEINLINE_FUNCTION
  reference_type
  operator()( const I0 & i0 , const I1 & i1 , const I2 & i2 , const I3 & i3
            , const I4 & i4 , const I5 & i5
            , typename std::enable_if<( Rank == 6 &&
                                        std::is_integral<I0>::value &&
                                        std::is_integral<I1>::value &&
                                        std::is_integral<I2>::value &&
                                        std::is_integral<I3>::value &&
                                        std::is_integral<I4>::value
                                      ), const int >::type i6
            , const int i7 = 0 ) const
    {
      KOKKOS_ASSERT_VIEW_MAPPING_ACCESS( typename traits::memory_space, m_map, Rank, i0, i1, i2, i3, i4, i5, i6, i7 );
      return m_map.reference(i0,i1,i2,i3,i4,i5);
    }

  // Rank == 7

  template< typename I0 , typename I1 , typename I2 , typename I3
          , typename I4 , typename I5 , typename I6 >
  KOKKOS_FORCEINLINE_FUNCTION
  typename std::enable_if<( Rank == 7 &&
                            std::is_integral<I0>::value &&
                            std::is_integral<I1>::value &&
                            std::is_integral<I2>::value &&
                            std::is_integral<I3>::value &&
                            std::is_integral<I4>::value &&
                            std::is_integral<I5>::value &&
                            std::is_integral<I6>::value 
                          ), reference_type >::type
  operator()( const I0 & i0 , const I1 & i1 , const I2 & i2 , const I3 & i3
            , const I4 & i4 , const I5 & i5 , const I6 & i6 ) const
    {
      KOKKOS_ASSERT_VIEW_MAPPING_ACCESS( typename traits::memory_space, m_map, Rank, i0, i1, i2, i3, i4, i5, i6, 0 );
      return m_map.reference(i0,i1,i2,i3,i4,i5,i6);
    }

  template< typename I0 , typename I1 , typename I2 , typename I3
          , typename I4 , typename I5 , typename I6 >
  KOKKOS_FORCEINLINE_FUNCTION
  reference_type
  operator()( const I0 & i0 , const I1 & i1 , const I2 & i2 , const I3 & i3
            , const I4 & i4 , const I5 & i5 , const I6 & i6
            , typename std::enable_if<( Rank == 7 &&
                                        std::is_integral<I0>::value &&
                                        std::is_integral<I1>::value &&
                                        std::is_integral<I2>::value &&
                                        std::is_integral<I3>::value &&
                                        std::is_integral<I4>::value
                                      ), const int >::type i7
            ) const
    {
      KOKKOS_ASSERT_VIEW_MAPPING_ACCESS( typename traits::memory_space, m_map, Rank, i0, i1, i2, i3, i4, i5, i6, i7 );
      return m_map.reference(i0,i1,i2,i3,i4,i5,i6);
    }

  // Rank == 8

  template< typename I0 , typename I1 , typename I2 , typename I3
          , typename I4 , typename I5 , typename I6 , typename I7 >
  KOKKOS_FORCEINLINE_FUNCTION
  typename std::enable_if<( Rank == 8 &&
                            std::is_integral<I0>::value &&
                            std::is_integral<I1>::value &&
                            std::is_integral<I2>::value &&
                            std::is_integral<I3>::value &&
                            std::is_integral<I4>::value &&
                            std::is_integral<I5>::value &&
                            std::is_integral<I6>::value &&
                            std::is_integral<I7>::value
                          ), reference_type >::type
  operator()( const I0 & i0 , const I1 & i1 , const I2 & i2 , const I3 & i3
            , const I4 & i4 , const I5 & i5 , const I6 & i6 , const I7 & i7 ) const
    {
      KOKKOS_ASSERT_VIEW_MAPPING_ACCESS( typename traits::memory_space, m_map, Rank, i0, i1, i2, i3, i4, i5, i6, i7 );
      return m_map.reference(i0,i1,i2,i3,i4,i5,i6,i7);
    }

  //----------------------------------------

  KOKKOS_INLINE_FUNCTION
  ~View() {}

  KOKKOS_INLINE_FUNCTION
  View() : m_track(), m_map() {}

  KOKKOS_INLINE_FUNCTION
  View( const View & rhs ) : m_track( rhs.m_track ), m_map( rhs.m_map ) {}

  KOKKOS_INLINE_FUNCTION
  View( View && rhs ) : m_track( rhs.m_track ), m_map( rhs.m_map ) {}

  KOKKOS_INLINE_FUNCTION
  View & operator = ( const View & rhs ) { m_track = rhs.m_track ; m_map = rhs.m_map ; return *this ; }

  KOKKOS_INLINE_FUNCTION
  View & operator = ( View && rhs ) { m_track = rhs.m_track ; m_map = rhs.m_map ; return *this ; }

  //----------------------------------------

  template< class RT , class R1 , class R2 , class R3 >
  KOKKOS_INLINE_FUNCTION
  View( const View<RT,R1,R2,R3> & rhs )
    : m_track( rhs.m_track )
    , m_map()
    {
      typedef typename View<RT,R1,R2,R3>::traits  SrcTraits ;
      typedef Kokkos::Experimental::Impl::ViewMapping< traits , SrcTraits >  Mapping ;
      static_assert( Mapping::is_assignable , "Incompatible View copy construction" );
      Mapping::assign( m_map , rhs.m_map , rhs.m_track );
    }

  template< class RT , class R1 , class R2 , class R3 >
  KOKKOS_INLINE_FUNCTION
  View( View<RT,R1,R2,R3> && rhs )
    : m_track( rhs.m_track )
    , m_map()
    {
      typedef typename View<RT,R1,R2,R3>::traits  SrcTraits ;
      typedef Kokkos::Experimental::Impl::ViewMapping< traits , SrcTraits >  Mapping ;
      static_assert( Mapping::is_assignable , "Incompatible View move construction" );
      Mapping::assign( m_map , rhs.m_map , rhs.m_track );
    }

  template< class RT , class R1 , class R2 , class R3 >
  KOKKOS_INLINE_FUNCTION
  View & operator = ( const View<RT,R1,R2,R3> & rhs )
    {
      typedef typename View<RT,R1,R2,R3>::traits  SrcTraits ;
      typedef Kokkos::Experimental::Impl::ViewMapping< traits , SrcTraits >  Mapping ;
      static_assert( Mapping::is_assignable , "Incompatible View copy assignment" );
      Mapping::assign( m_map , rhs.m_map , rhs.m_track );
      m_track.operator=( rhs.m_track );
      return *this ;
    }

  template< class RT , class R1 , class R2 , class R3 >
  KOKKOS_INLINE_FUNCTION
  View & operator = ( View<RT,R1,R2,R3> && rhs )
    {
      typedef typename View<RT,R1,R2,R3>::traits  SrcTraits ;
      typedef Kokkos::Experimental::Impl::ViewMapping< traits , SrcTraits >  Mapping ;
      static_assert( Mapping::is_assignable , "Incompatible View move assignment" );
      Mapping::assign( m_map , rhs.m_map , rhs.m_track );
      m_track.operator=( rhs.m_track );
      return *this ;
    }

  //----------------------------------------
  // Allocation according to allocation properties

private:

  // Must call destructor for non-trivial types
  template< class ExecSpace >
  struct DestroyFunctor {
    map_type  m_map ;
    ExecSpace m_space ;

    void destroy_shared_allocation() { m_map.destroy( m_space ); }
  };

public:

  inline
  const std::string label() const { return m_track.template get_label< typename traits::memory_space >(); }

  template< class Prop >
  explicit inline
  View( const Prop & arg_prop
      , const size_t arg_N0 = 0
      , const size_t arg_N1 = 0
      , const size_t arg_N2 = 0
      , const size_t arg_N3 = 0
      , const size_t arg_N4 = 0
      , const size_t arg_N5 = 0
      , const size_t arg_N6 = 0
      , const size_t arg_N7 = 0
      )
    : m_track()
    , m_map()
    {
      // Merge the < execution_space , memory_space > into the properties.
      typedef Kokkos::Experimental::Impl::ViewAllocProp< typename traits::device_type , Prop >  alloc_prop ;

      typedef typename alloc_prop::execution_space  execution_space ;
      typedef typename traits::memory_space         memory_space ;
      typedef DestroyFunctor< execution_space >     destroy_functor ;
      typedef Kokkos::Experimental::Impl::SharedAllocationRecord< memory_space , destroy_functor >  record_type ;

      static_assert( traits::is_managed , "View allocation constructor requires managed memory" );

      const alloc_prop prop( arg_prop );

      // If initializing view data then the execution space must be initialized.
      if ( prop.initialize.value && ! prop.execution.is_initialized() ) {
        Kokkos::Impl::throw_runtime_exception("Constructing View and initializing data with uninitialized execution space");
      }

      // Query the mapping for byte-size of allocation.
      const size_t alloc_size = map_type::memory_span( prop.allow_padding
                                                     , arg_N0 , arg_N1 , arg_N2 , arg_N3
                                                     , arg_N4 , arg_N5 , arg_N6 , arg_N7 );

      // Allocate memory from the memory space.
      record_type * const record = record_type::allocate( prop.memory , prop.label , alloc_size );

      // Construct the mapping object prior to start of tracking
      // to assign destroy functor and possibly initialize.
      m_map = map_type( record->data()
                      , prop.allow_padding
                      , arg_N0 , arg_N1 , arg_N2 , arg_N3
                      , arg_N4 , arg_N5 , arg_N6 , arg_N7 );

      // If constructing the plan for destructing as well
      // Copy the destroy functor into the allocation record
      // before initiating tracking.
      if ( prop.initialize.value ) {
        m_map.construct( prop.execution );

        record->m_destroy.m_map   = m_map ;
        record->m_destroy.m_space = prop.execution ;
      }

      // Setup and initialization complete, start tracking
      m_track = track_type( record );
    }

  template< class Prop >
  explicit inline
  View( const Prop & arg_prop
      , const typename traits::array_layout & arg_layout
      )
    : m_track()
    , m_map()
    {
      // Merge the < execution_space , memory_space > into the properties.
      typedef Kokkos::Experimental::Impl::ViewAllocProp< typename traits::device_type , Prop >  alloc_prop ;

      typedef typename alloc_prop::execution_space  execution_space ;
      typedef typename traits::memory_space         memory_space ;
      typedef DestroyFunctor< execution_space >     destroy_functor ;
      typedef Kokkos::Experimental::Impl::SharedAllocationRecord< memory_space , destroy_functor >  record_type ;

      static_assert( traits::is_managed , "View allocation constructor requires managed memory" );

      const alloc_prop prop( arg_prop );

      // If initializing view data then the execution space must be initialized.
      if ( prop.initialize.value && ! prop.execution.is_initialized() ) {
        Kokkos::Impl::throw_runtime_exception("Constructing View and initializing data with uninitialized execution space");
      }

      // Query the mapping for byte-size of allocation.
      const size_t alloc_size = map_type::memory_span( prop.allow_padding , arg_layout );

      // Allocate memory from the memory space.
      record_type * const record = record_type::allocate( prop.memory , prop.label , alloc_size );

      // Construct the mapping object prior to start of tracking
      // to assign destroy functor and possibly initialize.
      m_map = map_type( record->data() , prop.allow_padding , arg_layout );

      // Copy the destroy functor into the allocation record before initiating tracking.

      if ( prop.initialize.value ) {
        m_map.construct( prop.execution );

        record->m_destroy.m_map   = m_map ;
        record->m_destroy.m_space = prop.execution ;
      }

      // Setup and initialization complete, start tracking
      m_track = track_type( record );
    }

  //----------------------------------------
  // Memory span required to wrap these dimensions.
  static constexpr size_t memory_span( const size_t arg_N0 = 0
                                     , const size_t arg_N1 = 0
                                     , const size_t arg_N2 = 0
                                     , const size_t arg_N3 = 0
                                     , const size_t arg_N4 = 0
                                     , const size_t arg_N5 = 0
                                     , const size_t arg_N6 = 0
                                     , const size_t arg_N7 = 0
                                     )
    {
      return map_type::memory_span( std::integral_constant<bool,false>()
                                  , arg_N0 , arg_N1 , arg_N2 , arg_N3
                                  , arg_N4 , arg_N5 , arg_N6 , arg_N7 );
    }

  explicit inline
  View( typename traits::value_type * const arg_ptr
      , const size_t arg_N0 = 0
      , const size_t arg_N1 = 0
      , const size_t arg_N2 = 0
      , const size_t arg_N3 = 0
      , const size_t arg_N4 = 0
      , const size_t arg_N5 = 0
      , const size_t arg_N6 = 0
      , const size_t arg_N7 = 0
      )
    : m_track() // No memory tracking
    , m_map( arg_ptr , std::integral_constant<bool,false>()
           , arg_N0 , arg_N1 , arg_N2 , arg_N3
           , arg_N4 , arg_N5 , arg_N6 , arg_N7 )
    {}

  explicit inline
  View( typename traits::value_type * const arg_ptr
      , typename traits::array_layout & arg_layout
      )
    : m_track() // No memory tracking
    , m_map( arg_ptr , std::integral_constant<bool,false>(), arg_layout )
    {}

  //----------------------------------------
  // Shared scratch memory constructor

  static inline
  size_t shmem_size( const size_t arg_N0 = 0 ,
                     const size_t arg_N1 = 0 ,
                     const size_t arg_N2 = 0 ,
                     const size_t arg_N3 = 0 ,
                     const size_t arg_N4 = 0 ,
                     const size_t arg_N5 = 0 ,
                     const size_t arg_N6 = 0 ,
                     const size_t arg_N7 = 0 )
  {
    return map_type::memory_span( std::integral_constant<bool,false>()
                                , arg_N0 , arg_N1 , arg_N2 , arg_N3
                                , arg_N4 , arg_N5 , arg_N6 , arg_N7 );
  }

  explicit KOKKOS_INLINE_FUNCTION
  View( const typename traits::execution_space::scratch_memory_space & arg_space
      , const size_t arg_N0 = 0 
      , const size_t arg_N1 = 0
      , const size_t arg_N2 = 0
      , const size_t arg_N3 = 0
      , const size_t arg_N4 = 0
      , const size_t arg_N5 = 0
      , const size_t arg_N6 = 0
      , const size_t arg_N7 = 0 )
    : m_track() // No memory tracking
    , m_map( arg_space.get_shmem( map_type::memory_span( std::integral_constant<bool,false>()
                                                       , arg_N0 , arg_N1 , arg_N2 , arg_N3
                                                       , arg_N4 , arg_N5 , arg_N6 , arg_N7 ) )
           , std::integral_constant<bool,false>() 
           , arg_N0 , arg_N1 , arg_N2 , arg_N3
           , arg_N4 , arg_N5 , arg_N6 , arg_N7 )
    {}

  //----------------------------------------
  // Subviews

private:

  /**\brief Private method to support extensibility of subview construction */
  KOKKOS_INLINE_FUNCTION
  View( const track_type & arg_track , const map_type & arg_map )
    : m_track( arg_track )
    , m_map(   arg_map )
    {}

  explicit KOKKOS_INLINE_FUNCTION
  View( const track_type & rhs )
    : m_track( rhs )
    , m_map()
    {}

public:

  template< class D , class A1 , class A2 , class A3
          , class T0 , class T1 , class T2 , class T3
          , class T4 , class T5 , class T6 , class T7 >
  friend
  KOKKOS_INLINE_FUNCTION
  Kokkos::Experimental::Subview< View< D , A1 , A2 , A3 >
    , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T1>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T2>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T3>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T4>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T5>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T6>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T7>::is_range
    >
  subview( const View< D , A1 , A2 , A3 > & src
         , T0 const & arg0 , T1 const & arg1 , T2 const & arg2 , T3 const & arg3
         , T4 const & arg4 , T5 const & arg5 , T6 const & arg6 , T7 const & arg7
         );
  
  template< class D , class A1 , class A2 , class A3
          , class T0 , class T1 , class T2 , class T3
          , class T4 , class T5 , class T6 >
  friend
  KOKKOS_INLINE_FUNCTION
  Kokkos::Experimental::Subview< View< D , A1 , A2 , A3 >
    , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T1>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T2>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T3>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T4>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T5>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T6>::is_range
    >
  subview( const View< D , A1 , A2 , A3 > & src
         , T0 const & arg0 , T1 const & arg1 , T2 const & arg2 , T3 const & arg3
         , T4 const & arg4 , T5 const & arg5 , T6 const & arg6
         );

  template< class D , class A1 , class A2 , class A3
          , class T0 , class T1 , class T2 , class T3
          , class T4 , class T5 >
  friend
  KOKKOS_INLINE_FUNCTION
  Kokkos::Experimental::Subview< View< D , A1 , A2 , A3 >
    , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T1>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T2>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T3>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T4>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T5>::is_range
    >
  subview( const View< D , A1 , A2 , A3 > & src
         , T0 const & arg0 , T1 const & arg1 , T2 const & arg2 , T3 const & arg3
         , T4 const & arg4 , T5 const & arg5
         );
  
  template< class D , class A1 , class A2 , class A3
          , class T0 , class T1 , class T2 , class T3
          , class T4 >
  friend
  KOKKOS_INLINE_FUNCTION
  Kokkos::Experimental::Subview< View< D , A1 , A2 , A3 >
    , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T1>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T2>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T3>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T4>::is_range
    >
  subview( const View< D , A1 , A2 , A3 > & src
         , T0 const & arg0 , T1 const & arg1 , T2 const & arg2 , T3 const & arg3
         , T4 const & arg4
         );
  
  template< class D , class A1 , class A2 , class A3
          , class T0 , class T1 , class T2 , class T3 >
  friend
  KOKKOS_INLINE_FUNCTION
  Kokkos::Experimental::Subview< View< D , A1 , A2 , A3 >
    , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T1>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T2>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T3>::is_range
    >
  subview( const View< D , A1 , A2 , A3 > & src
         , T0 const & arg0 , T1 const & arg1 , T2 const & arg2 , T3 const & arg3
         );
  
  template< class D , class A1 , class A2 , class A3
          , class T0 , class T1 , class T2 >
  friend
  KOKKOS_INLINE_FUNCTION
  Kokkos::Experimental::Subview< View< D , A1 , A2 , A3 >
    , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T1>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T2>::is_range
    >
  subview( const View< D , A1 , A2 , A3 > & src
         , T0 const & arg0 , T1 const & arg1 , T2 const & arg2
         );

  template< class D , class A1 , class A2 , class A3
          , class T0 , class T1 >
  friend
  KOKKOS_INLINE_FUNCTION
  Kokkos::Experimental::Subview< View< D , A1 , A2 , A3 >
    , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T1>::is_range
    >
  subview( const View< D , A1 , A2 , A3 > & src
         , T0 const & arg0 , T1 const & arg1
         );
  
  template< class D, class A1, class A2, class A3, class T0 >
  friend
  KOKKOS_INLINE_FUNCTION
  Kokkos::Experimental::Subview< View< D, A1, A2, A3 >
    , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
    >
  subview( const View< D, A1, A2, A3 > & src , T0 const & arg0 );

};

template< class > struct is_view : public std::false_type {};

template< class D, class A1, class A2, class A3 >
struct is_view< View<D,A1,A2,A3> > : public std::true_type {};

//----------------------------------------------------------------------------
//----------------------------------------------------------------------------

template< class D, class A1, class A2, class A3
        , class T0 , class T1 , class T2 , class T3
        , class T4 , class T5 , class T6 , class T7 >
KOKKOS_INLINE_FUNCTION
Kokkos::Experimental::Subview< View< D, A1, A2, A3 >
  , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T1>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T2>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T3>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T4>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T5>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T6>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T7>::is_range
  >
subview( const View< D, A1, A2, A3 > & src
       , T0 const & arg0 , T1 const & arg1 , T2 const & arg2 , T3 const & arg3
       , T4 const & arg4 , T5 const & arg5 , T6 const & arg6 , T7 const & arg7
       )
{
  typedef View< D, A1, A2, A3 >  SrcView ;

  typedef Kokkos::Experimental::Impl::SubviewMapping
    < typename SrcView::traits
    , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T1>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T2>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T3>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T4>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T5>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T6>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T7>::is_range
    > Mapping ;

  typedef typename Mapping::type  DstView ;

  static_assert( SrcView::Rank == 8 , "Subview of rank 8 View requires 8 arguments" );

  DstView dst( src.m_track );

  Mapping::assign( dst.m_map, src.m_map, arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7 );

  return dst ;
}

template< class D, class A1, class A2, class A3
        , class T0 , class T1 , class T2 , class T3
        , class T4 , class T5 , class T6 >
KOKKOS_INLINE_FUNCTION
Kokkos::Experimental::Subview< View< D, A1, A2, A3 >
  , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T1>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T2>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T3>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T4>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T5>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T6>::is_range
  >
subview( const View< D, A1, A2, A3 > & src
       , T0 const & arg0 , T1 const & arg1 , T2 const & arg2 , T3 const & arg3
       , T4 const & arg4 , T5 const & arg5 , T6 const & arg6
       )
{
  typedef View< D, A1, A2, A3 >  SrcView ;

  typedef Kokkos::Experimental::Impl::SubviewMapping
    < typename SrcView::traits
    , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T1>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T2>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T3>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T4>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T5>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T6>::is_range
    >  Mapping ;

  typedef typename Mapping::type  DstView ;

  static_assert( SrcView::Rank == 7 , "Subview of rank 7 View requires 7 arguments" );

  DstView dst( src.m_track );

  Mapping::assign( dst.m_map, src.m_map, arg0, arg1, arg2, arg3, arg4, arg5, arg6, 0 );

  return dst ;
}

template< class D, class A1, class A2, class A3
        , class T0 , class T1 , class T2 , class T3
        , class T4 , class T5 >
KOKKOS_INLINE_FUNCTION
Kokkos::Experimental::Subview< View< D, A1, A2, A3 >
  , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T1>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T2>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T3>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T4>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T5>::is_range
  >
subview( const View< D, A1, A2, A3 > & src
       , T0 const & arg0 , T1 const & arg1 , T2 const & arg2 , T3 const & arg3
       , T4 const & arg4 , T5 const & arg5
       )
{
  typedef View< D, A1, A2, A3 >  SrcView ;

  typedef Kokkos::Experimental::Impl::SubviewMapping
    < typename SrcView::traits
    , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T1>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T2>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T3>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T4>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T5>::is_range
    >  Mapping ;

  typedef typename Mapping::type  DstView ;

  static_assert( SrcView::Rank == 6 , "Subview of rank 6 View requires 6 arguments" );

  DstView dst( src.m_track );

  Mapping::assign( dst.m_map, src.m_map, arg0, arg1, arg2, arg3, arg4, arg5, 0, 0 );

  return dst ;
}

template< class D, class A1, class A2, class A3
        , class T0 , class T1 , class T2 , class T3
        , class T4 >
KOKKOS_INLINE_FUNCTION
Kokkos::Experimental::Subview< View< D, A1, A2, A3 >
  , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T1>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T2>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T3>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T4>::is_range
  >
subview( const View< D, A1, A2, A3 > & src
       , T0 const & arg0 , T1 const & arg1 , T2 const & arg2 , T3 const & arg3
       , T4 const & arg4
       )
{
  typedef View< D, A1, A2, A3 >  SrcView ;

  typedef Kokkos::Experimental::Impl::SubviewMapping
    < typename SrcView::traits
    , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T1>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T2>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T3>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T4>::is_range
    >  Mapping ;

  typedef typename Mapping::type  DstView ;

  static_assert( SrcView::Rank == 5 , "Subview of rank 5 View requires 5 arguments" );

  DstView dst( src.m_track );

  Mapping::assign( dst.m_map, src.m_map, arg0, arg1, arg2, arg3, arg4, 0, 0, 0 );

  return dst ;
}

template< class D, class A1, class A2, class A3
        , class T0 , class T1 , class T2 , class T3 >
KOKKOS_INLINE_FUNCTION
Kokkos::Experimental::Subview< View< D, A1, A2, A3 >
  , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T1>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T2>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T3>::is_range
  >
subview( const View< D, A1, A2, A3 > & src
       , T0 const & arg0 , T1 const & arg1 , T2 const & arg2 , T3 const & arg3
       )
{
  typedef View< D, A1, A2, A3 >  SrcView ;

  typedef Kokkos::Experimental::Impl::SubviewMapping
    < typename SrcView::traits
    , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T1>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T2>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T3>::is_range
    >  Mapping ;

  typedef typename Mapping::type  DstView ;

  static_assert( SrcView::Rank == 4 , "Subview of rank 4 View requires 4 arguments" );

  DstView dst( src.m_track );

  Mapping::assign( dst.m_map, src.m_map, arg0, arg1, arg2, arg3, 0, 0, 0, 0 );

  return dst ;
}

template< class D, class A1, class A2, class A3
        , class T0 , class T1 , class T2 >
KOKKOS_INLINE_FUNCTION
Kokkos::Experimental::Subview< View< D, A1, A2, A3 >
  , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T1>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T2>::is_range
  >
subview( const View< D, A1, A2, A3 > & src
       , T0 const & arg0 , T1 const & arg1 , T2 const & arg2
       )
{
  typedef View< D, A1, A2, A3 >  SrcView ;

  typedef Kokkos::Experimental::Impl::SubviewMapping
    < typename SrcView::traits
    , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T1>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T2>::is_range
    >  Mapping ;

  typedef typename Mapping::type  DstView ;

  static_assert( SrcView::Rank == 3 , "Subview of rank 3 View requires 3 arguments" );

  DstView dst( src.m_track );

  Mapping::assign( dst.m_map, src.m_map, arg0, arg1, arg2, 0, 0, 0, 0, 0 );

  return dst ;
}

template< class D, class A1, class A2, class A3
        , class T0 , class T1 >
KOKKOS_INLINE_FUNCTION
Kokkos::Experimental::Subview< View< D, A1, A2, A3 >
  , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
  , Kokkos::Experimental::Impl::ViewOffsetRange<T1>::is_range
  >
subview( const View< D, A1, A2, A3 > & src
       , T0 const & arg0 , T1 const & arg1
       )
{
  typedef View< D, A1, A2, A3 >  SrcView ;

  typedef Kokkos::Experimental::Impl::SubviewMapping
    < typename SrcView::traits
    , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
    , Kokkos::Experimental::Impl::ViewOffsetRange<T1>::is_range
    >  Mapping ;

  typedef typename Mapping::type  DstView ;

  static_assert( SrcView::Rank == 2 , "Subview of rank 2 View requires 2 arguments" );

  DstView dst( src.m_track );

  Mapping::assign( dst.m_map, src.m_map, arg0, arg1, 0, 0, 0, 0, 0, 0 );

  return dst ;
}

template< class D, class A1, class A2, class A3, class T0 >
KOKKOS_INLINE_FUNCTION
Kokkos::Experimental::Subview< View< D, A1, A2, A3 >
  , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
  >
subview( const View< D, A1, A2, A3 > & src , T0 const & arg0 )
{
  typedef View< D, A1, A2, A3 >  SrcView ;

  typedef Kokkos::Experimental::Impl::SubviewMapping
    < typename SrcView::traits
    , Kokkos::Experimental::Impl::ViewOffsetRange<T0>::is_range
    >  Mapping ;

  typedef typename Mapping::type  DstView ;

  static_assert( SrcView::Rank == 1 , "Subview of rank 1 View requires 1 arguments" );

  DstView dst( src.m_track );

  Mapping::assign( dst.m_map , src.m_map , arg0, 0, 0, 0, 0, 0, 0, 0 );

  return dst ;
}

} /* namespace Experimental */
} /* namespace Kokkos */

//----------------------------------------------------------------------------
//----------------------------------------------------------------------------

namespace Kokkos {
namespace Experimental {

template< class LT , class L1 , class L2 , class L3
        , class RT , class R1 , class R2 , class R3 >
KOKKOS_INLINE_FUNCTION
bool operator == ( const View<LT,L1,L2,L3> & lhs ,
                   const View<RT,R1,R2,R3> & rhs )
{
  // Same data, layout, dimensions
  typedef ViewTraits<LT,L1,L2,L3>  lhs_traits ;
  typedef ViewTraits<RT,R1,R2,R3>  rhs_traits ;

  return
    std::is_same< typename lhs_traits::const_value_type ,
                  typename rhs_traits::const_value_type >::value &&
    std::is_same< typename lhs_traits::array_layout ,
                  typename rhs_traits::array_layout >::value &&
    std::is_same< typename lhs_traits::memory_space ,
                  typename rhs_traits::memory_space >::value &&
    lhs_traits::Rank == rhs_traits::Rank &&
    lhs.data()        == rhs.data() &&
    lhs.span()        == rhs.span() &&
    lhs.dimension_0() == rhs.dimension_0() &&
    lhs.dimension_1() == rhs.dimension_1() &&
    lhs.dimension_2() == rhs.dimension_2() &&
    lhs.dimension_3() == rhs.dimension_3() &&
    lhs.dimension_4() == rhs.dimension_4() &&
    lhs.dimension_5() == rhs.dimension_5() &&
    lhs.dimension_6() == rhs.dimension_6() &&
    lhs.dimension_7() == rhs.dimension_7();
}

template< class LT , class L1 , class L2 , class L3
        , class RT , class R1 , class R2 , class R3 >
KOKKOS_INLINE_FUNCTION
bool operator != ( const View<LT,L1,L2,L3> & lhs ,
                   const View<RT,R1,R2,R3> & rhs )
{
  return ! ( operator==(lhs,rhs) );
}

} /* namespace Experimental */
} /* namespace Kokkos */

//----------------------------------------------------------------------------
//----------------------------------------------------------------------------

namespace Kokkos {
namespace Experimental {
namespace Impl {

template< class OutputView , typename Enable = void >
struct ViewFill {

  typedef typename OutputView::const_value_type  const_value_type ;

  const OutputView output ;
  const_value_type input ;

  KOKKOS_INLINE_FUNCTION
  void operator()( const size_t i0 ) const
  {
    const size_t n1 = output.dimension_1();
    const size_t n2 = output.dimension_2();
    const size_t n3 = output.dimension_3();
    const size_t n4 = output.dimension_4();
    const size_t n5 = output.dimension_5();
    const size_t n6 = output.dimension_6();
    const size_t n7 = output.dimension_7();

    for ( size_t i1 = 0 ; i1 < n1 ; ++i1 ) {
    for ( size_t i2 = 0 ; i2 < n2 ; ++i2 ) {
    for ( size_t i3 = 0 ; i3 < n3 ; ++i3 ) {
    for ( size_t i4 = 0 ; i4 < n4 ; ++i4 ) {
    for ( size_t i5 = 0 ; i5 < n5 ; ++i5 ) {
    for ( size_t i6 = 0 ; i6 < n6 ; ++i6 ) {
    for ( size_t i7 = 0 ; i7 < n7 ; ++i7 ) {
      output(i0,i1,i2,i3,i4,i5,i6,i7) = input ;
    }}}}}}}
  }

  ViewFill( const OutputView & arg_out , const_value_type & arg_in )
    : output( arg_out ), input( arg_in )
    {
      typedef typename OutputView::execution_space  execution_space ;
      typedef Kokkos::RangePolicy< execution_space > Policy ;

      (void) Kokkos::Impl::ParallelFor< ViewFill , Policy >( *this , Policy( 0 , output.dimension_0() ) );

      execution_space::fence();
    }
};

template< class OutputView >
struct ViewFill< OutputView , typename std::enable_if< OutputView::Rank == 0 >::type > {
  ViewFill( const OutputView & dst , const typename OutputView::const_value_type & src )
    {
      Kokkos::Impl::DeepCopy< typename OutputView::memory_space , Kokkos::HostSpace >
        ( dst.data() , & src , sizeof(typename OutputView::const_value_type) );
    }
};

template< class OutputView , class InputView >
struct ViewRemap {

  const OutputView output ;
  const InputView  input ;
  const size_t n0 ;
  const size_t n1 ;
  const size_t n2 ;
  const size_t n3 ;
  const size_t n4 ;
  const size_t n5 ;
  const size_t n6 ;
  const size_t n7 ;

  ViewRemap( const OutputView & arg_out , const InputView & arg_in )
    : output( arg_out ), input( arg_in )
    , n0( std::min( (size_t)arg_out.dimension_0() , (size_t)arg_in.dimension_0() ) )
    , n1( std::min( (size_t)arg_out.dimension_1() , (size_t)arg_in.dimension_1() ) )
    , n2( std::min( (size_t)arg_out.dimension_2() , (size_t)arg_in.dimension_2() ) )
    , n3( std::min( (size_t)arg_out.dimension_3() , (size_t)arg_in.dimension_3() ) )
    , n4( std::min( (size_t)arg_out.dimension_4() , (size_t)arg_in.dimension_4() ) )
    , n5( std::min( (size_t)arg_out.dimension_5() , (size_t)arg_in.dimension_5() ) )
    , n6( std::min( (size_t)arg_out.dimension_6() , (size_t)arg_in.dimension_6() ) )
    , n7( std::min( (size_t)arg_out.dimension_7() , (size_t)arg_in.dimension_7() ) )
    {
      typedef typename OutputView::execution_space execution_space ;
      typedef Kokkos::RangePolicy< execution_space > Policy ;
      (void) Kokkos::Impl::ParallelFor< ViewRemap , Policy >( *this , Policy( 0 , n0 ) );
    }

  KOKKOS_INLINE_FUNCTION
  void operator()( const size_t i0 ) const
  {
    for ( size_t i1 = 0 ; i1 < n1 ; ++i1 ) {
    for ( size_t i2 = 0 ; i2 < n2 ; ++i2 ) {
    for ( size_t i3 = 0 ; i3 < n3 ; ++i3 ) {
    for ( size_t i4 = 0 ; i4 < n4 ; ++i4 ) {
    for ( size_t i5 = 0 ; i5 < n5 ; ++i5 ) {
    for ( size_t i6 = 0 ; i6 < n6 ; ++i6 ) {
    for ( size_t i7 = 0 ; i7 < n7 ; ++i7 ) {
      output(i0,i1,i2,i3,i4,i5,i6,i7) = input(i0,i1,i2,i3,i4,i5,i6,i7);
    }}}}}}}
  }
};

} /* namespace Impl */
} /* namespace Experimental */
} /* namespace Kokkos */

//----------------------------------------------------------------------------
//----------------------------------------------------------------------------

namespace Kokkos {
namespace Experimental {

/** \brief  Deep copy a value from Host memory into a view.  */
template< class DT , class D1 , class D2 , class D3 >
inline
void deep_copy( const View<DT,D1,D2,D3> & dst
              , typename ViewTraits<DT,D1,D2,D3>::const_value_type & value )
{
  static_assert( std::is_same< typename ViewTraits<DT,D1,D2,D3>::non_const_value_type ,
                               typename ViewTraits<DT,D1,D2,D3>::value_type >::value
               , "ERROR: Incompatible deep_copy( View , value )" );

  Kokkos::Experimental::Impl::ViewFill< View<DT,D1,D2,D3> >( dst , value );
}

/** \brief  Deep copy into a value in Host memory from a view.  */
template< class ST , class S1 , class S2 , class S3 >
inline
void deep_copy( ST & dst , const View<ST,S1,S2,S3> & src )
{
  static_assert( ViewTraits<ST,S1,S2,S3>::rank == 0 
               , "ERROR: Non-rank-zero view in deep_copy( value , View )" );

  typedef ViewTraits<ST,S1,S2,S3>            src_traits ;
  typedef typename src_traits::memory_space  src_memory_space ;
  Kokkos::Impl::DeepCopy< HostSpace , src_memory_space >( & dst , src.data() , sizeof(ST) );
}

//----------------------------------------------------------------------------
/** \brief  A deep copy between views of compatible type, and rank zero.  */
template< class DT , class D1 , class D2 , class D3
        , class ST , class S1 , class S2 , class S3 >
inline
void deep_copy( const View<DT,D1,D2,D3> & dst ,
                const View<ST,S1,S2,S3> & src ,
                typename std::enable_if<(
                  // Rank zero:
                  ( unsigned(ViewTraits<DT,D1,D2,D3>::rank) == unsigned(0) ) &&
                  ( unsigned(ViewTraits<ST,S1,S2,S3>::rank) == unsigned(0) ) &&
                  // Same type and destination is not constant:
                  std::is_same< typename ViewTraits<DT,D1,D2,D3>::value_type ,
                                typename ViewTraits<ST,S1,S2,S3>::non_const_value_type >::value
                )>::type * = 0 )
{
  typedef View<DT,D1,D2,D3>  dst_type ;
  typedef View<ST,S1,S2,S3>  src_type ;

  typedef typename dst_type::value_type    value_type ;
  typedef typename dst_type::memory_space  dst_memory_space ;
  typedef typename src_type::memory_space  src_memory_space ;

  if ( dst.data() != src.data() ) {
    Kokkos::Impl::DeepCopy< dst_memory_space , src_memory_space >( dst.data() , src.data() , sizeof(value_type) );
  }
}

//----------------------------------------------------------------------------
/** \brief  A deep copy between views of the default specialization, compatible type,
 *          same non-zero rank, same contiguous layout.
 */
template< class DT , class D1 , class D2 , class D3 ,
          class ST , class S1 , class S2 , class S3 >
inline
void deep_copy( const View<DT,D1,D2,D3> & dst ,
                const View<ST,S1,S2,S3> & src ,
                typename std::enable_if<(
                  // destination is non-const.
                  std::is_same< typename ViewTraits<DT,D1,D2,D3>::value_type ,
                                typename ViewTraits<DT,D1,D2,D3>::non_const_value_type >::value
                  &&
                  // Same non-zero rank:
                  ( unsigned(ViewTraits<DT,D1,D2,D3>::rank) != 0 )
                  &&
                  ( unsigned(ViewTraits<DT,D1,D2,D3>::rank) ==
                    unsigned(ViewTraits<ST,S1,S2,S3>::rank) )
                  &&
                  // Not specialized, default ViewMapping
                  std::is_same< typename ViewTraits<DT,D1,D2,D3>::specialize , void >::value
                  &&
                  std::is_same< typename ViewTraits<ST,S1,S2,S3>::specialize , void >::value
                )>::type * = 0 )
{
  typedef View<DT,D1,D2,D3>  dst_type ;
  typedef View<ST,S1,S2,S3>  src_type ;

  typedef typename dst_type::execution_space  dst_execution_space ;
  typedef typename dst_type::memory_space     dst_memory_space ;
  typedef typename src_type::memory_space     src_memory_space ;

  enum { DstExecCanAccessSrc =
   Kokkos::Impl::VerifyExecutionCanAccessMemorySpace< typename dst_execution_space::memory_space , src_memory_space >::value };

  if ( (void *) dst.data() != (void*) src.data() ) {

    // Concern: If overlapping views then a parallel copy will be erroneous.
    // ...

    // If same type, equal layout, equal dimensions, equal span, and contiguous memory then can byte-wise copy

    if ( std::is_same< typename ViewTraits<DT,D1,D2,D3>::value_type ,
                       typename ViewTraits<ST,S1,S2,S3>::non_const_value_type >::value &&
         std::is_same< typename ViewTraits<DT,D1,D2,D3>::array_layout ,
                       typename ViewTraits<ST,S1,S2,S3>::array_layout >::value &&
         dst.span_is_contiguous() &&
         src.span_is_contiguous() &&
         dst.span() == src.span() &&
         dst.dimension_0() == src.dimension_0() &&
         dst.dimension_1() == src.dimension_1() &&
         dst.dimension_2() == src.dimension_2() &&
         dst.dimension_3() == src.dimension_3() &&
         dst.dimension_4() == src.dimension_4() &&
         dst.dimension_5() == src.dimension_5() &&
         dst.dimension_6() == src.dimension_6() &&
         dst.dimension_7() == src.dimension_7() ) {

      const size_t nbytes = sizeof(typename dst_type::value_type) * dst.span();

      Kokkos::Impl::DeepCopy< dst_memory_space , src_memory_space >( dst.data() , src.data() , nbytes );
    }
    else if ( DstExecCanAccessSrc ) {
      // Copying data between views in accessible memory spaces and either non-contiguous or incompatible shape.
      Kokkos::Experimental::Impl::ViewRemap< dst_type , src_type >( dst , src );
    }
    else {
      Kokkos::Impl::throw_runtime_exception("deep_copy given views that would require a temporary allocation");
    }
  }
}

} /* namespace Experimental */
} /* namespace Kokkos */

//----------------------------------------------------------------------------
//----------------------------------------------------------------------------

namespace Kokkos {
namespace Experimental {

template< class T , class A1, class A2, class A3 >
inline
typename Kokkos::Experimental::View<T,A1,A2,A3>::HostMirror
create_mirror( const Kokkos::Experimental::View<T,A1,A2,A3> & src
             , typename std::enable_if<
                 ! std::is_same< typename Kokkos::Experimental::ViewTraits<T,A1,A2,A3>::array_layout
                               , Kokkos::LayoutStride >::value
               >::type * = 0
             )
{
  typedef View<T,A1,A2,A3>               src_type ;
  typedef typename src_type::HostMirror  dst_type ;

  return dst_type( std::string( src.label() ).append("_mirror")
                 , src.dimension_0()
                 , src.dimension_1()
                 , src.dimension_2()
                 , src.dimension_3()
                 , src.dimension_4()
                 , src.dimension_5()
                 , src.dimension_6()
                 , src.dimension_7() );
}

template< class T , class A1, class A2, class A3 >
inline
typename Kokkos::Experimental::View<T,A1,A2,A3>::HostMirror
create_mirror( const Kokkos::Experimental::View<T,A1,A2,A3> & src
             , typename std::enable_if<
                 std::is_same< typename Kokkos::Experimental::ViewTraits<T,A1,A2,A3>::array_layout
                             , Kokkos::LayoutStride >::value
               >::type * = 0
             )
{
  typedef View<T,A1,A2,A3>               src_type ;
  typedef typename src_type::HostMirror  dst_type ;

  Kokkos::LayoutStride layout ;

  layout.dimension[0] = src.dimension_0();
  layout.dimension[1] = src.dimension_1();
  layout.dimension[2] = src.dimension_2();
  layout.dimension[3] = src.dimension_3();
  layout.dimension[4] = src.dimension_4();
  layout.dimension[5] = src.dimension_5();
  layout.dimension[6] = src.dimension_6();
  layout.dimension[7] = src.dimension_7();

  layout.stride[0] = src.stride_0();
  layout.stride[1] = src.stride_1();
  layout.stride[2] = src.stride_2();
  layout.stride[3] = src.stride_3();
  layout.stride[4] = src.stride_4();
  layout.stride[5] = src.stride_5();
  layout.stride[6] = src.stride_6();
  layout.stride[7] = src.stride_7();

  return dst_type( std::string( src.label() ).append("_mirror") , layout );
}

template< class T , class A1 , class A2 , class A3 >
inline
typename Kokkos::Experimental::View<T,A1,A2,A3>::HostMirror
create_mirror_view( const Kokkos::Experimental::View<T,A1,A2,A3> & src
                  , typename std::enable_if<(
                      std::is_same< typename Kokkos::Experimental::View<T,A1,A2,A3>::memory_space
                                  , typename Kokkos::Experimental::View<T,A1,A2,A3>::HostMirror::memory_space
                                  >::value
                      &&
                      std::is_same< typename Kokkos::Experimental::View<T,A1,A2,A3>::data_type
                                  , typename Kokkos::Experimental::View<T,A1,A2,A3>::HostMirror::data_type
                                  >::value
                    )>::type * = 0 
                  )
{
  return src ;
}

template< class T , class A1 , class A2 , class A3 >
inline
typename Kokkos::Experimental::View<T,A1,A2,A3>::HostMirror
create_mirror_view( const Kokkos::Experimental::View<T,A1,A2,A3> & src
                  , typename std::enable_if< ! (
                      std::is_same< typename Kokkos::Experimental::View<T,A1,A2,A3>::memory_space
                                  , typename Kokkos::Experimental::View<T,A1,A2,A3>::HostMirror::memory_space
                                  >::value
                      &&
                      std::is_same< typename Kokkos::Experimental::View<T,A1,A2,A3>::data_type
                                  , typename Kokkos::Experimental::View<T,A1,A2,A3>::HostMirror::data_type
                                  >::value
                    )>::type * = 0 
                  )
{
  return Kokkos::Experimental::create_mirror( src );
}

} /* namespace Experimental */
} /* namespace Kokkos */

//----------------------------------------------------------------------------
//----------------------------------------------------------------------------

namespace Kokkos {
namespace Experimental {

/** \brief  Resize a view with copying old data to new data at the corresponding indices. */
template< class T , class A1 , class A2 , class A3 >
inline
void resize( Kokkos::Experimental::View<T,A1,A2,A3> & v ,
             const size_t n0 = 0 ,
             const size_t n1 = 0 ,
             const size_t n2 = 0 ,
             const size_t n3 = 0 ,
             const size_t n4 = 0 ,
             const size_t n5 = 0 ,
             const size_t n6 = 0 ,
             const size_t n7 = 0 )
{
  typedef Kokkos::Experimental::View<T,A1,A2,A3>  view_type ;

  static_assert( Kokkos::Experimental::ViewTraits<T,A1,A2,A3>::is_managed , "Can only resize managed views" );

  view_type v_resized( v.label(), n0, n1, n2, n3, n4, n5, n6, n7 );

  Kokkos::Experimental::Impl::ViewRemap< view_type , view_type >( v_resized , v );

  v = v_resized ;
}

/** \brief  Resize a view with copying old data to new data at the corresponding indices. */
template< class T , class A1 , class A2 , class A3 >
inline
void realloc( Kokkos::Experimental::View<T,A1,A2,A3> & v ,
              const size_t n0 = 0 ,
              const size_t n1 = 0 ,
              const size_t n2 = 0 ,
              const size_t n3 = 0 ,
              const size_t n4 = 0 ,
              const size_t n5 = 0 ,
              const size_t n6 = 0 ,
              const size_t n7 = 0 )
{
  typedef Kokkos::Experimental::View<T,A1,A2,A3>  view_type ;

  static_assert( Kokkos::Experimental::ViewTraits<T,A1,A2,A3>::is_managed , "Can only realloc managed views" );

  const std::string label = v.label();

  v = view_type(); // Deallocate first, if the only view to allocation
  v = view_type( label, n0, n1, n2, n3, n4, n5, n6, n7 );
}

} /* namespace Experimental */
} /* namespace Kokkos */

//----------------------------------------------------------------------------
//----------------------------------------------------------------------------

#if defined( KOKKOS_USING_EXPERIMENTAL_VIEW )

namespace Kokkos {

template< class D , class A1 = void , class A2 = void , class A3 = void >
using ViewTraits = Kokkos::Experimental::ViewTraits<D,A1,A2,A3> ;

template< class D , class A1 = void , class A2 = void , class A3 = void , class S = void >
using View = Kokkos::Experimental::View<D,A1,A2,A3> ;

using Kokkos::Experimental::deep_copy ;
using Kokkos::Experimental::create_mirror ;
using Kokkos::Experimental::create_mirror_view ;
using Kokkos::Experimental::subview ;
using Kokkos::Experimental::resize ;
using Kokkos::Experimental::realloc ;

namespace Impl {

using Kokkos::Experimental::is_view ;

class ViewDefault {};

template< class SrcViewType
        , class Arg0Type
        , class Arg1Type
        , class Arg2Type
        , class Arg3Type
        , class Arg4Type
        , class Arg5Type
        , class Arg6Type
        , class Arg7Type
        >
struct ViewSubview /* { typedef ... type ; } */ ;

}

} /* namespace Kokkos */

#include <impl/Kokkos_Atomic_View.hpp>

#endif /* #if defined( KOKKOS_USING_EXPERIMENTAL_VIEW ) */

//----------------------------------------------------------------------------
//----------------------------------------------------------------------------

#endif