File: sparse_shape.cpp

package info (click to toggle)
tiledarray 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 9,568 kB
  • sloc: cpp: 53,449; javascript: 1,599; sh: 393; ansic: 226; python: 223; xml: 195; makefile: 36
file content (1393 lines) | stat: -rw-r--r-- 48,424 bytes parent folder | download
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
/*
 *  This file is a part of TiledArray.
 *  Copyright (C) 2013  Virginia Tech
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 *  Justus Calvin
 *  Department of Chemistry, Virginia Tech
 *
 *  sparse_shape.cpp
 *  Jul 18, 2013
 *
 */

#include <boost/range/combine.hpp>
#ifdef TILEDARRAY_HAS_RANGEV3
#include <range/v3/view/zip.hpp>
#endif

#include "TiledArray/sparse_shape.h"
#include "sparse_shape_fixture.h"
#include "tiledarray.h"
#include "unit_test_config.h"

using namespace TiledArray;

BOOST_FIXTURE_TEST_SUITE(sparse_shape_suite, SparseShapeFixture)

BOOST_AUTO_TEST_CASE(default_constructor) {
  BOOST_CHECK_NO_THROW(SparseShape<float> x);
  SparseShape<float> x, y;
  Permutation perm;
  math::GemmHelper gemm_helper(madness::cblas::NoTrans, madness::cblas::NoTrans,
                               2u, 2u, 2u);

  BOOST_CHECK(x.empty());
  BOOST_CHECK(!x.is_dense());
  BOOST_CHECK(!x.validate(tr.tiles_range()));

#ifdef TA_EXCEPTION_ERROR
  BOOST_CHECK_THROW(x[0], Exception);

  BOOST_CHECK_THROW(x.perm(perm), Exception);

  BOOST_CHECK_THROW(x.scale(2.0), Exception);
  BOOST_CHECK_THROW(x.scale(2.0, perm), Exception);

  BOOST_CHECK_THROW(x.add(y), Exception);
  BOOST_CHECK_THROW(x.add(y, 2.0), Exception);
  BOOST_CHECK_THROW(x.add(y, perm), Exception);
  BOOST_CHECK_THROW(x.add(y, 2.0, perm), Exception);
  BOOST_CHECK_THROW(x.add(2.0), Exception);
  BOOST_CHECK_THROW(x.add(2.0, perm), Exception);

  BOOST_CHECK_THROW(x.subt(y), Exception);
  BOOST_CHECK_THROW(x.subt(y, 2.0), Exception);
  BOOST_CHECK_THROW(x.subt(y, perm), Exception);
  BOOST_CHECK_THROW(x.subt(y, 2.0, perm), Exception);
  BOOST_CHECK_THROW(x.subt(2.0), Exception);
  BOOST_CHECK_THROW(x.subt(2.0, perm), Exception);

  BOOST_CHECK_THROW(x.mult(y), Exception);
  BOOST_CHECK_THROW(x.mult(y, 2.0), Exception);
  BOOST_CHECK_THROW(x.mult(y, perm), Exception);
  BOOST_CHECK_THROW(x.mult(y, 2.0, perm), Exception);

  BOOST_CHECK_THROW(x.gemm(y, 2.0, gemm_helper), Exception);
  BOOST_CHECK_THROW(x.gemm(y, 2.0, gemm_helper, perm), Exception);
#endif  // TA_EXCEPTION_ERROR
}

BOOST_AUTO_TEST_CASE(non_comm_constructor) {
  // Construct test tile norms
  Tensor<float> tile_norms = make_norm_tensor(tr, 1, 42);

  // Construct the shape using dense ctor
  BOOST_CHECK_NO_THROW(SparseShape<float> x(tile_norms, tr));
  SparseShape<float> x(tile_norms, tr);

  // Check that the shape has been initialized
  BOOST_CHECK(!x.empty());
  BOOST_CHECK(!x.is_dense());
  BOOST_CHECK(x.validate(tr.tiles_range()));

  size_type zero_tile_count = 0ul;

  for (Tensor<float>::size_type i = 0ul; i < tile_norms.size(); ++i) {
    // Compute the expected value
    const TiledRange::range_type range = tr.make_tile_range(i);
    float expected = tile_norms[i] / float(range.volume());
    if (expected < SparseShape<float>::threshold()) expected = 0.0f;

    // Check that the tile norm has been scaled correctly
    BOOST_CHECK_CLOSE(x[i], expected, tolerance);

    // Check that the unscaled tile norm is correct
    BOOST_CHECK_CLOSE(x.tile_norms()[i], tile_norms[i], tolerance);

    // Check zero threshold
    if (x[i] < SparseShape<float>::threshold()) {
      BOOST_CHECK(x.is_zero(i));
      // "zero" tile norms are set to hard 0
      BOOST_CHECK(x[i] == 0.0f);
      BOOST_CHECK(x.tile_norms()[i] == 0.0f);
      ++zero_tile_count;
    } else {
      BOOST_CHECK(!x.is_zero(i));
    }
  }

  BOOST_CHECK_CLOSE(x.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);

  // use the sparse ctor
  {
    std::vector<std::pair<Range::index, float>> sparse_tile_norms;

    for (Tensor<float>::size_type i = 0ul; i < tile_norms.size(); ++i) {
      auto tiles_range = tr.tiles_range();
      auto idx = tiles_range.idx(i);
      if (tile_norms[i] > 0.0) {
        sparse_tile_norms.push_back(std::make_pair(idx, tile_norms[i]));
      }
    }

    // Construct the shape using sparse ctor
    BOOST_CHECK_NO_THROW(SparseShape<float> x_sp(sparse_tile_norms, tr));
    SparseShape<float> x_sp(sparse_tile_norms, tr);

    // Check that the dense and sparse ctors produced same data
    for (Tensor<float>::size_type i = 0ul; i < tile_norms.size(); ++i) {
      BOOST_CHECK_CLOSE(x[i], x_sp[i], tolerance);
      BOOST_CHECK_CLOSE(x.tile_norms()[i], x_sp.tile_norms()[i], tolerance);
    }
  }
}

BOOST_AUTO_TEST_CASE(comm_constructor) {
  // Construct test tile norms
  Tensor<float> tile_norms = make_norm_tensor(tr, 1, 98);
  Tensor<float> tile_norms_ref = tile_norms.clone();

  // Zero non-local tiles
  TiledArray::detail::BlockedPmap pmap(*GlobalFixture::world,
                                       tr.tiles_range().volume());
  for (Tensor<float>::size_type i = 0ul; i < tile_norms.size(); ++i)
    if (!pmap.is_local(i)) tile_norms[i] = 0.0f;

  // Construct the shape
  BOOST_CHECK_NO_THROW(
      SparseShape<float> x(*GlobalFixture::world, tile_norms, tr));
  SparseShape<float> x(*GlobalFixture::world, tile_norms, tr);

  // Check that the shape has been initialized
  BOOST_CHECK(!x.empty());
  BOOST_CHECK(!x.is_dense());
  BOOST_CHECK(x.validate(tr.tiles_range()));

  size_type zero_tile_count = 0ul;

  for (Tensor<float>::size_type i = 0ul; i < tile_norms.size(); ++i) {
    // Compute the expected value
    const TiledRange::range_type range = tr.make_tile_range(i);
    float expected = tile_norms_ref[i] / float(range.volume());
    if (expected < SparseShape<float>::threshold()) expected = 0.0f;

    // Check that the tile has been normalized correctly
    BOOST_CHECK_CLOSE(x[i], expected, tolerance);

    // Check zero threshold
    if (x[i] < SparseShape<float>::threshold()) {
      BOOST_CHECK(x.is_zero(i));
      ++zero_tile_count;
    } else {
      BOOST_CHECK(!x.is_zero(i));
    }
  }

  BOOST_CHECK_CLOSE(x.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);

  // use the sparse ctor
  {
    std::vector<std::pair<Range::index, float>> sparse_tile_norms;

    for (Tensor<float>::size_type i = 0ul; i < tile_norms.size(); ++i) {
      auto tiles_range = tr.tiles_range();
      auto idx = tiles_range.idx(i);
      if (tile_norms[i] > 0.0) {
        sparse_tile_norms.push_back(std::make_pair(idx, tile_norms[i]));
      }
    }

    // Construct the shape using sparse ctor
    BOOST_CHECK_NO_THROW(
        SparseShape<float> x_sp(*GlobalFixture::world, sparse_tile_norms, tr));
    SparseShape<float> x_sp(*GlobalFixture::world, sparse_tile_norms, tr);

    // Check that the dense and sparse ctors produced same data
    for (Tensor<float>::size_type i = 0ul; i < tile_norms.size(); ++i) {
      BOOST_CHECK_CLOSE(x[i], x_sp[i], tolerance);
    }
  }
}

BOOST_AUTO_TEST_CASE(copy_constructor) {
  // Construct the shape
  BOOST_CHECK_NO_THROW(SparseShape<float> y(sparse_shape));
  SparseShape<float> y(sparse_shape);

  // Check that the shape has been initialized
  BOOST_CHECK(!y.empty());
  BOOST_CHECK(!y.is_dense());
  BOOST_CHECK(y.validate(tr.tiles_range()));

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    // Check that the tile data has been copied correctly
    BOOST_CHECK_CLOSE(y[i], sparse_shape[i], tolerance);
  }

  BOOST_CHECK_EQUAL(y.sparsity(), sparse_shape.sparsity());
}

BOOST_AUTO_TEST_CASE(permute) {
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = sparse_shape.perm(perm));

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    BOOST_CHECK_CLOSE(result[perm * tr.tiles_range().idx(i)], sparse_shape[i],
                      tolerance);
  }

  BOOST_CHECK_EQUAL(result.sparsity(), sparse_shape.sparsity());
}

BOOST_AUTO_TEST_CASE(block) {
  auto less = std::less<std::size_t>();

  for (auto lower_it = tr.tiles_range().begin();
       lower_it != tr.tiles_range().end(); ++lower_it) {
    const auto& lower = *lower_it;

    for (auto upper_it = tr.tiles_range().begin();
         upper_it != tr.tiles_range().end(); ++upper_it) {
      auto upper = *upper_it;
      for (auto it = upper.begin(); it != upper.end(); ++it) *it += 1;

      if (std::equal(lower.begin(), lower.end(), upper.begin(), less)) {
        // Check that the block function does not throw an exception
        SparseShape<float> result;
        BOOST_REQUIRE_NO_THROW(result = sparse_shape.block(lower, upper));

        // Check that the block range data is correct
        std::size_t volume = 1ul;
        for (int i = int(tr.tiles_range().rank()) - 1u; i >= 0; --i) {
          auto size_i = upper[i] - lower[i];
          BOOST_CHECK_EQUAL(result.data().range().lobound(i), 0);
          BOOST_CHECK_EQUAL(result.data().range().upbound(i), size_i);
          BOOST_CHECK_EQUAL(result.data().range().extent(i), size_i);
          BOOST_CHECK_EQUAL(result.data().range().stride(i), volume);
          volume *= size_i;
        }
        BOOST_CHECK_EQUAL(result.data().range().volume(), volume);

        // Check that the data was copied and scaled correctly
        unsigned long i = 0ul;
        unsigned long zero_tile_count = 0ul;
        Range::index arg_index(sparse_shape.data().range().rank(), 0ul);
        for (auto it = result.data().range().begin();
             it != result.data().range().end(); ++it, ++i) {
          // Construct the coordinate index for the argument element
          for (unsigned int j = 0u; j < sparse_shape.data().range().rank(); ++j)
            arg_index[j] = (*it)[j] + lower[j];

          // Check the result elements
          BOOST_CHECK_CLOSE(result.data()(*it), sparse_shape.data()(arg_index),
                            tolerance);
          BOOST_CHECK_CLOSE(result.data()[i], sparse_shape.data()(arg_index),
                            tolerance);
          if (result.data()[i] < SparseShape<float>::threshold())
            ++zero_tile_count;
        }
        BOOST_CHECK_CLOSE(
            result.sparsity(),
            float(zero_tile_count) / float(result.data().range().volume()),
            tolerance);

        // validate other block functions
#if TEST_DIM == 3u
        BOOST_REQUIRE_NO_THROW(sparse_shape.block(
            {lower[0], lower[1], lower[2]}, {upper[0], upper[1], upper[2]}));
        auto result1 = sparse_shape.block({lower[0], lower[1], lower[2]},
                                          {upper[0], upper[1], upper[2]});
        BOOST_CHECK_EQUAL(result, result1);
        BOOST_REQUIRE_NO_THROW(sparse_shape.block({{lower[0], upper[0]},
                                                   {lower[1], upper[1]},
                                                   {lower[2], upper[2]}}));
        auto result2 = sparse_shape.block(
            {{lower[0], upper[0]}, {lower[1], upper[1]}, {lower[2], upper[2]}});
        BOOST_CHECK_EQUAL(result, result2);
#endif
        BOOST_REQUIRE_NO_THROW(
            sparse_shape.block(boost::combine(lower, upper)));
        auto result3 = sparse_shape.block(boost::combine(lower, upper));
        BOOST_CHECK_EQUAL(result, result3);
#ifdef TILEDARRAY_HAS_RANGEV3
        BOOST_REQUIRE_NO_THROW(
            sparse_shape.block(ranges::views::zip(lower, upper)));
        auto result4 = sparse_shape.block(ranges::views::zip(lower, upper));
        BOOST_CHECK_EQUAL(result, result4);
#endif
      }
#ifdef TA_EXCEPTION_ERROR
      else {
        // Check that block throws an exception with a bad block range
        BOOST_CHECK_THROW(sparse_shape.block(lower, upper),
                          TiledArray::Exception);
      }
#endif  // TA_EXCEPTION_ERROR
    }
  }
}

BOOST_AUTO_TEST_CASE(block_scale) {
  auto less = std::less<std::size_t>();
  const float factor = 3.3;

  for (auto lower_it = tr.tiles_range().begin();
       lower_it != tr.tiles_range().end(); ++lower_it) {
    const auto& lower = *lower_it;

    for (auto upper_it = tr.tiles_range().begin();
         upper_it != tr.tiles_range().end(); ++upper_it) {
      auto upper = *upper_it;
      for (auto it = upper.begin(); it != upper.end(); ++it) *it += 1;

      if (std::equal(lower.begin(), lower.end(), upper.begin(), less)) {
        // Check that the block function does not throw an exception
        SparseShape<float> result;
        BOOST_REQUIRE_NO_THROW(result =
                                   sparse_shape.block(lower, upper, factor));

        // Check that the block range data is correct
        std::size_t volume = 1ul;
        for (int i = int(tr.tiles_range().rank()) - 1u; i >= 0; --i) {
          auto size_i = upper[i] - lower[i];
          BOOST_CHECK_EQUAL(result.data().range().lobound(i), 0);
          BOOST_CHECK_EQUAL(result.data().range().upbound(i), size_i);
          BOOST_CHECK_EQUAL(result.data().range().extent(i), size_i);
          BOOST_CHECK_EQUAL(result.data().range().stride(i), volume);
          volume *= size_i;
        }
        BOOST_CHECK_EQUAL(result.data().range().volume(), volume);

        unsigned long i = 0ul;
        unsigned long zero_tile_count = 0ul;
        Range::index arg_index(sparse_shape.data().range().rank(), 0ul);
        for (auto it = result.data().range().begin();
             it != result.data().range().end(); ++it, ++i) {
          // Construct the coordinate index for the argument element
          for (unsigned int j = 0u; j < sparse_shape.data().range().rank(); ++j)
            arg_index[j] = (*it)[j] + lower[j];

          // Compute the expected value
          const auto expected = sparse_shape.data()(arg_index) * factor;

          // Check the result elements
          BOOST_CHECK_CLOSE(result.data()(*it), expected, tolerance);
          BOOST_CHECK_CLOSE(result.data()[i], expected, tolerance);
          if (result.data()[i] < SparseShape<float>::threshold())
            ++zero_tile_count;
        }
        BOOST_CHECK_CLOSE(
            result.sparsity(),
            float(zero_tile_count) / float(result.data().range().volume()),
            tolerance);

        // validate other block functions
#if TEST_DIM == 3u
        BOOST_REQUIRE_NO_THROW(
            sparse_shape.block({lower[0], lower[1], lower[2]},
                               {upper[0], upper[1], upper[2]}, factor));
        auto result1 =
            sparse_shape.block({lower[0], lower[1], lower[2]},
                               {upper[0], upper[1], upper[2]}, factor);
        BOOST_CHECK_EQUAL(result, result1);
        BOOST_REQUIRE_NO_THROW(sparse_shape.block(
            {{lower[0], upper[0]}, {lower[1], upper[1]}, {lower[2], upper[2]}},
            factor));
        auto result2 = sparse_shape.block(
            {{lower[0], upper[0]}, {lower[1], upper[1]}, {lower[2], upper[2]}},
            factor);
        BOOST_CHECK_EQUAL(result, result2);
#endif
        BOOST_REQUIRE_NO_THROW(
            sparse_shape.block(boost::combine(lower, upper), factor));
        auto result3 = sparse_shape.block(boost::combine(lower, upper), factor);
        BOOST_CHECK_EQUAL(result, result3);
#ifdef TILEDARRAY_HAS_RANGEV3
        BOOST_REQUIRE_NO_THROW(
            sparse_shape.block(ranges::views::zip(lower, upper), factor));
        auto result4 =
            sparse_shape.block(ranges::views::zip(lower, upper), factor);
        BOOST_CHECK_EQUAL(result, result4);
#endif

      }
#ifdef TA_EXCEPTION_ERROR
      else {
        // Check that block throws an exception with a bad block range
        BOOST_CHECK_THROW(sparse_shape.block(lower, upper),
                          TiledArray::Exception);
      }
#endif  // TA_EXCEPTION_ERROR
    }
  }
}

BOOST_AUTO_TEST_CASE(block_perm) {
  auto less = std::less<std::size_t>();
  const auto inv_perm = perm.inv();

  for (auto lower_it = tr.tiles_range().begin();
       lower_it != tr.tiles_range().end(); ++lower_it) {
    const auto& lower = *lower_it;

    for (auto upper_it = tr.tiles_range().begin();
         upper_it != tr.tiles_range().end(); ++upper_it) {
      auto upper = *upper_it;
      for (auto it = upper.begin(); it != upper.end(); ++it) *it += 1;

      if (std::equal(lower.begin(), lower.end(), upper.begin(), less)) {
        // Check that the block function does not throw an exception
        SparseShape<float> result;
        BOOST_REQUIRE_NO_THROW(result = sparse_shape.block(lower, upper, perm));

        // Check that the block range data is correct
        std::size_t volume = 1ul;
        for (int i = int(tr.tiles_range().rank()) - 1u; i >= 0; --i) {
          const auto inv_perm_i = inv_perm[i];
          const auto size_i = upper[inv_perm_i] - lower[inv_perm_i];
          BOOST_CHECK_EQUAL(result.data().range().lobound(i), 0);
          BOOST_CHECK_EQUAL(result.data().range().upbound(i), size_i);
          BOOST_CHECK_EQUAL(result.data().range().extent(i), size_i);
          BOOST_CHECK_EQUAL(result.data().range().stride(i), volume);
          volume *= size_i;
        }
        BOOST_CHECK_EQUAL(result.data().range().volume(), volume);

        // Check that the data was copied and scaled correctly
        unsigned long i = 0ul;
        unsigned long zero_tile_count = 0ul;
        Range::index arg_index(sparse_shape.data().range().rank(), 0ul);
        for (auto it = result.data().range().begin();
             it != result.data().range().end(); ++it, ++i) {
          // Construct the coordinate index for the argument element
          for (unsigned int j = 0u; j < sparse_shape.data().range().rank();
               ++j) {
            const auto perm_i = perm[j];
            arg_index[j] = (*it)[perm_i] + lower[j];
          }

          // Check the result elements
          BOOST_CHECK_CLOSE(result.data()(*it), sparse_shape.data()(arg_index),
                            tolerance);
          BOOST_CHECK_CLOSE(result.data()[i], sparse_shape.data()(arg_index),
                            tolerance);
          if (result.data()[i] < SparseShape<float>::threshold())
            ++zero_tile_count;
        }
        BOOST_CHECK_CLOSE(
            result.sparsity(),
            float(zero_tile_count) / float(result.data().range().volume()),
            tolerance);

        // validate other block functions
#if TEST_DIM == 3u
        BOOST_REQUIRE_NO_THROW(
            sparse_shape.block({lower[0], lower[1], lower[2]},
                               {upper[0], upper[1], upper[2]}, perm));
        auto result1 = sparse_shape.block({lower[0], lower[1], lower[2]},
                                          {upper[0], upper[1], upper[2]}, perm);
        BOOST_CHECK_EQUAL(result, result1);
        BOOST_REQUIRE_NO_THROW(sparse_shape.block(
            {{lower[0], upper[0]}, {lower[1], upper[1]}, {lower[2], upper[2]}},
            perm));
        auto result2 = sparse_shape.block(
            {{lower[0], upper[0]}, {lower[1], upper[1]}, {lower[2], upper[2]}},
            perm);
        BOOST_CHECK_EQUAL(result, result2);
#endif
        BOOST_REQUIRE_NO_THROW(
            sparse_shape.block(boost::combine(lower, upper), perm));
        auto result3 = sparse_shape.block(boost::combine(lower, upper), perm);
        BOOST_CHECK_EQUAL(result, result3);
#ifdef TILEDARRAY_HAS_RANGEV3
        BOOST_REQUIRE_NO_THROW(
            sparse_shape.block(ranges::views::zip(lower, upper), perm));
        auto result4 =
            sparse_shape.block(ranges::views::zip(lower, upper), perm);
        BOOST_CHECK_EQUAL(result, result4);
#endif

      }
#ifdef TA_EXCEPTION_ERROR
      else {
        // Check that block throws an exception with a bad block range
        BOOST_CHECK_THROW(sparse_shape.block(lower, upper),
                          TiledArray::Exception);
      }
#endif  // TA_EXCEPTION_ERROR
    }
  }
}

BOOST_AUTO_TEST_CASE(block_scale_perm) {
  auto less = std::less<std::size_t>();
  const float factor = 3.3;
  const auto inv_perm = perm.inv();

  for (auto lower_it = tr.tiles_range().begin();
       lower_it != tr.tiles_range().end(); ++lower_it) {
    const auto& lower = *lower_it;

    for (auto upper_it = tr.tiles_range().begin();
         upper_it != tr.tiles_range().end(); ++upper_it) {
      auto upper = *upper_it;
      for (auto it = upper.begin(); it != upper.end(); ++it) *it += 1;

      if (std::equal(lower.begin(), lower.end(), upper.begin(), less)) {
        // Check that the block function does not throw an exception
        SparseShape<float> result;
        BOOST_REQUIRE_NO_THROW(
            result = sparse_shape.block(lower, upper, factor, perm));

        // Check that the block range data is correct
        std::size_t volume = 1ul;
        for (int i = int(tr.tiles_range().rank()) - 1u; i >= 0; --i) {
          const auto inv_perm_i = inv_perm[i];
          const auto size_i = upper[inv_perm_i] - lower[inv_perm_i];
          BOOST_CHECK_EQUAL(result.data().range().lobound(i), 0);
          BOOST_CHECK_EQUAL(result.data().range().upbound(i), size_i);
          BOOST_CHECK_EQUAL(result.data().range().extent(i), size_i);
          BOOST_CHECK_EQUAL(result.data().range().stride(i), volume);
          volume *= size_i;
        }
        BOOST_CHECK_EQUAL(result.data().range().volume(), volume);

        unsigned long i = 0ul;
        unsigned long zero_tile_count = 0ul;
        Range::index arg_index(sparse_shape.data().range().rank(), 0ul);
        for (auto it = result.data().range().begin();
             it != result.data().range().end(); ++it, ++i) {
          // Construct the coordinate index for the argument element
          for (unsigned int j = 0u; j < sparse_shape.data().range().rank();
               ++j) {
            const auto perm_i = perm[j];
            arg_index[j] = (*it)[perm_i] + lower[j];
          }

          // Compute the expected value
          const auto expected = sparse_shape.data()(arg_index) * factor;

          // Check the result elements
          BOOST_CHECK_CLOSE(result.data()(*it), expected, tolerance);
          BOOST_CHECK_CLOSE(result.data()[i], expected, tolerance);
          if (result.data()[i] < SparseShape<float>::threshold())
            ++zero_tile_count;
        }
        BOOST_CHECK_CLOSE(
            result.sparsity(),
            float(zero_tile_count) / float(result.data().range().volume()),
            tolerance);

        // validate other block functions
#if TEST_DIM == 3u
        BOOST_REQUIRE_NO_THROW(
            sparse_shape.block({lower[0], lower[1], lower[2]},
                               {upper[0], upper[1], upper[2]}, factor, perm));
        auto result1 =
            sparse_shape.block({lower[0], lower[1], lower[2]},
                               {upper[0], upper[1], upper[2]}, factor, perm);
        BOOST_CHECK_EQUAL(result, result1);
        BOOST_REQUIRE_NO_THROW(sparse_shape.block(
            {{lower[0], upper[0]}, {lower[1], upper[1]}, {lower[2], upper[2]}},
            factor, perm));
        auto result2 = sparse_shape.block(
            {{lower[0], upper[0]}, {lower[1], upper[1]}, {lower[2], upper[2]}},
            factor, perm);
        BOOST_CHECK_EQUAL(result, result2);
#endif
        BOOST_REQUIRE_NO_THROW(
            sparse_shape.block(boost::combine(lower, upper), factor, perm));
        auto result3 =
            sparse_shape.block(boost::combine(lower, upper), factor, perm);
        BOOST_CHECK_EQUAL(result, result3);
#ifdef TILEDARRAY_HAS_RANGEV3
        BOOST_REQUIRE_NO_THROW(
            sparse_shape.block(ranges::views::zip(lower, upper), factor, perm));
        auto result4 =
            sparse_shape.block(ranges::views::zip(lower, upper), factor, perm);
        BOOST_CHECK_EQUAL(result, result4);
#endif

      }
#ifdef TA_EXCEPTION_ERROR
      else {
        // Check that block throws an exception with a bad block range
        BOOST_CHECK_THROW(sparse_shape.block(lower, upper),
                          TiledArray::Exception);
      }
#endif  // TA_EXCEPTION_ERROR
    }
  }
}

BOOST_AUTO_TEST_CASE(transform) {
  auto op = [](Tensor<float> const& t) {
    Tensor<float> new_t = t.clone();

    const auto size = new_t.range().volume();
    for (auto i = 0ul; i < size; ++i) {
      if (i % 2 == 0) {
        new_t[i] *= 2;
      } else {
        new_t[i] /= 2;
      }
    }

    return new_t;
  };

  SparseShape<float> result = sparse_shape.transform(op);

  size_type zero_tile_count = 0ul;

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    // Compute expected value

    float expected;
    if (i % 2 == 0) {
      expected = sparse_shape[i] * 2;
    } else {
      expected = sparse_shape[i] / 2;
    }
    if (expected < SparseShape<float>::threshold()) expected = 0.0f;

    const float result_i = result[i];

    BOOST_CHECK_CLOSE(result_i, expected, tolerance);

    // Check zero threshold
    if (result_i < SparseShape<float>::threshold()) {
      BOOST_CHECK(result.is_zero(i));
      ++zero_tile_count;
    } else {
      BOOST_CHECK(!result.is_zero(i));
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);
}

BOOST_AUTO_TEST_CASE(mask) {
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = left.mask(right));

  size_type zero_tile_count = 0ul;
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    if (left.is_zero(i)) {
      ++zero_tile_count;
    }
  }

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    auto threshold = SparseShape<float>::threshold();
    float expected = left[i];
    if (left[i] >= threshold && right[i] < threshold) {
      expected = 0.f;
      ++zero_tile_count;
    }

    BOOST_CHECK_CLOSE(result[i], expected, tolerance);

    // Check zero threshold
    if (result[i] < SparseShape<float>::threshold()) {
      BOOST_CHECK(result.is_zero(i));
    } else {
      BOOST_CHECK(!result.is_zero(i));
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);
}

BOOST_AUTO_TEST_CASE(scale) {
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = sparse_shape.scale(-4.1));

  size_type zero_tile_count = 0ul;

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    // Compute expected value
    float expected = sparse_shape[i] * 4.1;
    if (expected < SparseShape<float>::threshold()) expected = 0.0f;

    const float result_i = result[i];

    BOOST_CHECK_CLOSE(result_i, expected, tolerance);

    // Check zero threshold
    if (result_i < SparseShape<float>::threshold()) {
      BOOST_CHECK(result.is_zero(i));
      ++zero_tile_count;
    } else {
      BOOST_CHECK(!result.is_zero(i));
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);
}

BOOST_AUTO_TEST_CASE(scale_perm) {
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = sparse_shape.scale(-5.4, perm));

  size_type zero_tile_count = 0ul;

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    // Compute expected value
    float expected = sparse_shape[i] * 5.4;
    if (expected < SparseShape<float>::threshold()) expected = 0.0f;

    const std::size_t pi = perm_index(i);
    const float result_i = result[pi];
    BOOST_CHECK_CLOSE(result_i, expected, tolerance);

    // Check zero threshold
    if (result_i < SparseShape<float>::threshold()) {
      BOOST_CHECK(result.is_zero(pi));
      ++zero_tile_count;
    } else {
      BOOST_CHECK(!result.is_zero(pi));
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);
}

BOOST_AUTO_TEST_CASE(add) {
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = left.add(right));

  size_type zero_tile_count = 0ul;

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    // Compute expected value
    float expected = left[i] + right[i];
    if (expected < SparseShape<float>::threshold()) expected = 0.0f;

    const float result_i = result[i];

    BOOST_CHECK_CLOSE(result_i, expected, tolerance);

    // Check zero threshold
    if (result_i < SparseShape<float>::threshold()) {
      BOOST_CHECK(result.is_zero(i));
      ++zero_tile_count;
    } else {
      BOOST_CHECK(!result.is_zero(i));
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);
}

BOOST_AUTO_TEST_CASE(add_scale) {
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = left.add(right, -2.2f));

  size_type zero_tile_count = 0ul;

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    // Compute expected value
    float expected = (left[i] + right[i]) * 2.2f;
    if (expected < SparseShape<float>::threshold()) expected = 0.0f;

    const float result_i = result[i];

    BOOST_CHECK_CLOSE(result_i, expected, tolerance);

    // Check zero threshold
    if (result_i < SparseShape<float>::threshold()) {
      BOOST_CHECK(result.is_zero(i));
      ++zero_tile_count;
    } else {
      BOOST_CHECK(!result.is_zero(i));
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);
}

BOOST_AUTO_TEST_CASE(add_perm) {
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = left.add(right, perm));

  size_type zero_tile_count = 0ul;

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    // Compute expected value
    float expected = left[i] + right[i];
    if (expected < SparseShape<float>::threshold()) expected = 0.0f;

    const std::size_t pi = perm_index(i);
    const float result_i = result[pi];

    BOOST_CHECK_CLOSE(result_i, expected, tolerance);

    // Check zero threshold
    if (result_i < SparseShape<float>::threshold()) {
      BOOST_CHECK(result.is_zero(pi));
      ++zero_tile_count;
    } else {
      BOOST_CHECK(!result.is_zero(pi));
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);
}

BOOST_AUTO_TEST_CASE(add_scale_perm) {
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = left.add(right, -2.3f, perm));

  size_type zero_tile_count = 0ul;

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    // Compute expected value
    float expected = (left[i] + right[i]) * 2.3f;
    if (expected < SparseShape<float>::threshold()) expected = 0.0f;

    const std::size_t pi = perm_index(i);
    const float result_i = result[pi];

    BOOST_CHECK_CLOSE(result_i, expected, tolerance);

    // Check zero threshold
    if (result_i < SparseShape<float>::threshold()) {
      BOOST_CHECK(result.is_zero(pi));
      ++zero_tile_count;
    } else {
      BOOST_CHECK(!result.is_zero(pi));
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);
}

BOOST_AUTO_TEST_CASE(add_const) {
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = sparse_shape.add(-8.8f));

  size_type zero_tile_count = 0ul;

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    // Compute expected value
    const TiledRange::range_type range = tr.make_tile_range(i);
    float expected =
        sparse_shape[i] + std::sqrt((8.8f * 8.8f) * float(range.volume())) /
                              float(range.volume());
    if (expected < SparseShape<float>::threshold()) expected = 0.0f;

    const float result_i = result[i];

    BOOST_CHECK_CLOSE(result_i, expected, tolerance);

    // Check zero threshold
    if (result_i < SparseShape<float>::threshold()) {
      BOOST_CHECK(result.is_zero(i));
      ++zero_tile_count;
    } else {
      BOOST_CHECK(!result.is_zero(i));
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);
}

BOOST_AUTO_TEST_CASE(add_const_perm) {
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = sparse_shape.add(-1.7, perm));

  size_type zero_tile_count = 0ul;

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    // Compute expected value
    const TiledRange::range_type range = tr.make_tile_range(i);
    float expected = sparse_shape[i] +
                     std::sqrt((1.7f * 1.7f) * range.volume()) / range.volume();
    if (expected < SparseShape<float>::threshold()) expected = 0.0f;

    const std::size_t pi = perm_index(i);
    const float result_i = result[pi];

    BOOST_CHECK_CLOSE(result_i, expected, tolerance);

    // Check zero threshold
    if (result_i < SparseShape<float>::threshold()) {
      BOOST_CHECK(result.is_zero(pi));
      ++zero_tile_count;
    } else {
      BOOST_CHECK(!result.is_zero(pi));
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);
}

BOOST_AUTO_TEST_CASE(subt) {
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = left.subt(right));

  size_type zero_tile_count = 0ul;

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    // Compute expected value
    float expected = left[i] + right[i];
    if (expected < SparseShape<float>::threshold()) expected = 0.0f;

    const float result_i = result[i];

    BOOST_CHECK_CLOSE(result_i, expected, tolerance);

    // Check zero threshold
    if (result_i < SparseShape<float>::threshold()) {
      BOOST_CHECK(result.is_zero(i));
      ++zero_tile_count;
    } else {
      BOOST_CHECK(!result.is_zero(i));
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);
}

BOOST_AUTO_TEST_CASE(subt_scale) {
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = left.subt(right, -2.2f));

  size_type zero_tile_count = 0ul;

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    // Compute expected value
    float expected = (left[i] + right[i]) * 2.2f;
    if (expected < SparseShape<float>::threshold()) expected = 0.0f;

    const float result_i = result[i];

    BOOST_CHECK_CLOSE(result_i, expected, tolerance);

    // Check zero threshold
    if (result_i < SparseShape<float>::threshold()) {
      BOOST_CHECK(result.is_zero(i));
      ++zero_tile_count;
    } else {
      BOOST_CHECK(!result.is_zero(i));
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);
}

BOOST_AUTO_TEST_CASE(subt_perm) {
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = left.subt(right, perm));

  size_type zero_tile_count = 0ul;

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    // Compute expected value
    float expected = left[i] + right[i];
    if (expected < SparseShape<float>::threshold()) expected = 0.0f;

    const std::size_t pi = perm_index(i);
    const float result_i = result[pi];

    BOOST_CHECK_CLOSE(result_i, expected, tolerance);

    // Check zero threshold
    if (result_i < SparseShape<float>::threshold()) {
      BOOST_CHECK(result.is_zero(pi));
      ++zero_tile_count;
    } else {
      BOOST_CHECK(!result.is_zero(pi));
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);
}

BOOST_AUTO_TEST_CASE(subt_scale_perm) {
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = left.subt(right, -2.3f, perm));

  size_type zero_tile_count = 0ul;

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    // Compute expected value
    float expected = (left[i] + right[i]) * 2.3f;
    if (expected < SparseShape<float>::threshold()) expected = 0.0f;

    const std::size_t pi = perm_index(i);
    const float result_i = result[pi];

    BOOST_CHECK_CLOSE(result_i, expected, tolerance);

    // Check zero threshold
    if (result_i < SparseShape<float>::threshold()) {
      BOOST_CHECK(result.is_zero(pi));
      ++zero_tile_count;
    } else {
      BOOST_CHECK(!result.is_zero(pi));
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);
}

BOOST_AUTO_TEST_CASE(subt_const) {
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = sparse_shape.subt(-8.8f));

  size_type zero_tile_count = 0ul;

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    // Compute expected value
    const TiledRange::range_type range = tr.make_tile_range(i);
    float expected =
        sparse_shape[i] + std::sqrt((8.8f * 8.8f) * float(range.volume())) /
                              float(range.volume());
    if (expected < SparseShape<float>::threshold()) expected = 0.0f;

    BOOST_CHECK_CLOSE(result[i], expected, tolerance);

    // Check zero threshold
    if (result[i] < SparseShape<float>::threshold()) {
      BOOST_CHECK(result.is_zero(i));
      ++zero_tile_count;
    } else {
      BOOST_CHECK(!result.is_zero(i));
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);
}

BOOST_AUTO_TEST_CASE(subt_const_perm) {
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = sparse_shape.subt(-1.7, perm));

  size_type zero_tile_count = 0ul;

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    // Compute expected value
    const TiledRange::range_type range = tr.make_tile_range(i);
    float expected =
        sparse_shape[i] + std::sqrt((1.7f * 1.7f) * float(range.volume())) /
                              float(range.volume());
    if (expected < SparseShape<float>::threshold()) expected = 0.0f;

    const std::size_t pi = perm_index(i);
    const float result_i = result[pi];

    BOOST_CHECK_CLOSE(result_i, expected, tolerance);

    // Check zero threshold
    if (result_i < SparseShape<float>::threshold()) {
      BOOST_CHECK(result.is_zero(pi));
      ++zero_tile_count;
    } else {
      BOOST_CHECK(!result.is_zero(pi));
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);
}

BOOST_AUTO_TEST_CASE(mult) {
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = left.mult(right));

  size_type zero_tile_count = 0ul;

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    // Compute expected value
    const TiledRange::range_type range = tr.make_tile_range(i);
    float expected = left[i] * right[i] * float(range.volume());
    if (expected < SparseShape<float>::threshold()) expected = 0.0f;

    BOOST_CHECK_CLOSE(result[i], expected, tolerance);

    // Check zero threshold
    if (result[i] < SparseShape<float>::threshold()) {
      BOOST_CHECK(result.is_zero(i));
      ++zero_tile_count;
    } else {
      BOOST_CHECK(!result.is_zero(i));
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);
}

BOOST_AUTO_TEST_CASE(mult_scale) {
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = left.mult(right, -2.2f));

  size_type zero_tile_count = 0ul;

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    // Compute expected value
    const TiledRange::range_type range = tr.make_tile_range(i);
    float expected = (left[i] * right[i]) * 2.2f * float(range.volume());
    if (expected < SparseShape<float>::threshold()) expected = 0.0f;

    BOOST_CHECK_CLOSE(result[i], expected, tolerance);

    // Check zero threshold
    if (result[i] < SparseShape<float>::threshold()) {
      BOOST_CHECK(result.is_zero(i));
      ++zero_tile_count;
    } else {
      BOOST_CHECK(!result.is_zero(i));
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);
}

BOOST_AUTO_TEST_CASE(mult_perm) {
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = left.mult(right, perm));

  size_type zero_tile_count = 0ul;

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    // Compute expected value
    const TiledRange::range_type range = tr.make_tile_range(i);
    float expected = left[i] * right[i] * float(range.volume());
    if (expected < SparseShape<float>::threshold()) expected = 0.0f;

    const std::size_t pi = perm_index(i);
    const float result_i = result[pi];

    BOOST_CHECK_CLOSE(result_i, expected, tolerance);

    // Check zero threshold
    if (result_i < SparseShape<float>::threshold()) {
      BOOST_CHECK(result.is_zero(pi));
      ++zero_tile_count;
    } else {
      BOOST_CHECK(!result.is_zero(pi));
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);
}

BOOST_AUTO_TEST_CASE(mult_scale_perm) {
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = left.mult(right, -2.3f, perm));

  size_type zero_tile_count = 0ul;

  // Check that all the tiles have been normalized correctly
  for (Tensor<float>::size_type i = 0ul; i < tr.tiles_range().volume(); ++i) {
    // Compute expected value
    const TiledRange::range_type range = tr.make_tile_range(i);
    float expected = (left[i] * right[i]) * 2.3f * float(range.volume());
    if (expected < SparseShape<float>::threshold()) expected = 0.0f;

    const std::size_t pi = perm_index(i);
    const float result_i = result[pi];

    BOOST_CHECK_CLOSE(result_i, expected, tolerance);

    // Check zero threshold
    if (result_i < SparseShape<float>::threshold()) {
      BOOST_CHECK(result.is_zero(pi));
      ++zero_tile_count;
    } else {
      BOOST_CHECK(!result.is_zero(pi));
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(tr.tiles_range().volume()),
                    tolerance);
}

BOOST_AUTO_TEST_CASE(gemm) {
  // Create a matrix with the expected output
  const std::size_t m = left.data().range().extent(0);
  const std::size_t n =
      right.data().range().extent(right.data().range().rank() - 1);
  //  const std::size_t k = left.data().size() / m;

  size_type zero_tile_count = 0ul;

  // Evaluate the contraction of sparse shapes
  math::GemmHelper gemm_helper(madness::cblas::NoTrans, madness::cblas::NoTrans,
                               2u, left.data().range().rank(),
                               right.data().range().rank());
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = left.gemm(right, -7.2, gemm_helper));

  // Create volumes tensors for the arguments
  Tensor<float> volumes(tr.tiles_range(), 0.0f);
  for (std::size_t i = 0ul; i < tr.tiles_range().volume(); ++i) {
    const float volume = tr.make_tile_range(i).volume();
    volumes[i] = volume;
  }

  Tensor<float> result_norms = left.data().mult(volumes).gemm(
      right.data().mult(volumes), 7.2, gemm_helper);

  // Check that the result is correct
  std::array<std::size_t, 2> i = {{0, 0}};
  for (i[0] = 0ul; i[0] < m; ++i[0]) {
    const TiledRange1::range_type r_0 = tr.data()[0].tile(i[0]);
    const float size_0 = r_0.second - r_0.first;

    for (i[1] = 0ul; i[1] < n; ++i[1]) {
      const TiledRange1::range_type r_1 = tr.data()[2].tile(i[1]);
      const float size_1 = r_1.second - r_1.first;

      // Compute expected value
      float expected = result_norms[i] / (size_0 * size_1);
      if (expected < SparseShape<float>::threshold()) expected = 0.0f;

      BOOST_CHECK_CLOSE(result[i], expected, tolerance);

      // Check zero threshold
      if (result[i] < SparseShape<float>::threshold()) {
        BOOST_CHECK(result.is_zero(i));
        ++zero_tile_count;
      } else {
        BOOST_CHECK(!result.is_zero(i));
      }
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(result_norms.size()),
                    tolerance);
}

BOOST_AUTO_TEST_CASE(gemm_perm) {
  const Permutation perm({1, 0});

  // Create a matrix with the expected output
  const std::size_t m = left.data().range().extent(0);
  const std::size_t n =
      right.data().range().extent(right.data().range().rank() - 1);
  //  const std::size_t k = left.data().size() / m;

  size_type zero_tile_count = 0ul;

  // Evaluate the contraction of sparse shapes
  math::GemmHelper gemm_helper(madness::cblas::NoTrans, madness::cblas::NoTrans,
                               2u, left.data().range().rank(),
                               right.data().range().rank());
  SparseShape<float> result;
  BOOST_REQUIRE_NO_THROW(result = left.gemm(right, -7.2, gemm_helper, perm));

  // Create volumes tensors for the arguments
  Tensor<float> volumes(tr.tiles_range(), 0.0f);
  for (std::size_t i = 0ul; i < tr.tiles_range().volume(); ++i) {
    const float volume = tr.make_tile_range(i).volume();
    volumes[i] = volume;
  }

  Tensor<float> result_norms =
      left.data()
          .mult(volumes)
          .gemm(right.data().mult(volumes), 7.2, gemm_helper)
          .permute(perm);

  // Check that the result is correct
  std::array<std::size_t, 2> i = {{0, 0}};
  for (i[0] = 0ul; i[0] < n; ++i[0]) {
    const TiledRange1::range_type r_0 = tr.data()[2].tile(i[0]);
    const float size_0 = r_0.second - r_0.first;

    for (i[1] = 0ul; i[1] < m; ++i[1]) {
      const TiledRange1::range_type r_1 = tr.data()[0].tile(i[1]);
      const float size_1 = r_1.second - r_1.first;

      // Compute expected value
      float expected = result_norms[i] / (size_0 * size_1);
      if (expected < SparseShape<float>::threshold()) expected = 0.0f;

      BOOST_CHECK_CLOSE(result[i], expected, tolerance);

      // Check zero threshold
      if (result[i] < SparseShape<float>::threshold()) {
        BOOST_CHECK(result.is_zero(i));
        ++zero_tile_count;
      } else {
        BOOST_CHECK(!result.is_zero(i));
      }
    }
  }

  BOOST_CHECK_CLOSE(result.sparsity(),
                    float(zero_tile_count) / float(result_norms.size()),
                    tolerance);
}

BOOST_AUTO_TEST_SUITE_END()