@@ -314,8 +314,7 @@ TEST_F(ModulesTest, MaxPool1d) {
314
314
TEST_F (ModulesTest, MaxPool1dReturnIndices) {
315
315
MaxPool1d model (MaxPool1dOptions (3 ).stride (2 ));
316
316
auto x = torch::ones ({1 , 1 , 5 }, torch::requires_grad ());
317
- torch::Tensor y, indices;
318
- std::tie (y, indices) = model->forward_with_indices (x);
317
+ auto [y, indices] = model->forward_with_indices (x);
319
318
320
319
ASSERT_EQ (y.dim (), 3 );
321
320
ASSERT_TRUE (torch::allclose (y, torch::ones ({1 , 1 , 2 })));
@@ -355,8 +354,7 @@ TEST_F(ModulesTest, MaxPool2dUneven) {
355
354
TEST_F (ModulesTest, MaxPool2dReturnIndices) {
356
355
MaxPool2d model (MaxPool2dOptions (3 ).stride (2 ));
357
356
auto x = torch::ones ({2 , 5 , 5 }, torch::requires_grad ());
358
- torch::Tensor y, indices;
359
- std::tie (y, indices) = model->forward_with_indices (x);
357
+ auto [y, indices] = model->forward_with_indices (x);
360
358
361
359
ASSERT_EQ (y.dim (), 3 );
362
360
ASSERT_TRUE (torch::allclose (y, torch::ones ({2 , 2 , 2 })));
@@ -383,8 +381,7 @@ TEST_F(ModulesTest, MaxPool3d) {
383
381
TEST_F (ModulesTest, MaxPool3dReturnIndices) {
384
382
MaxPool3d model (MaxPool3dOptions (3 ).stride (2 ));
385
383
auto x = torch::ones ({2 , 5 , 5 , 5 }, torch::requires_grad ());
386
- torch::Tensor y, indices;
387
- std::tie (y, indices) = model->forward_with_indices (x);
384
+ auto [y, indices] = model->forward_with_indices (x);
388
385
389
386
ASSERT_EQ (y.dim (), 4 );
390
387
ASSERT_TRUE (torch::allclose (y, torch::ones ({2 , 2 , 2 , 2 })));
@@ -467,8 +464,7 @@ TEST_F(ModulesTest, FractionalMaxPool2d) {
467
464
TEST_F (ModulesTest, FractionalMaxPool2dReturnIndices) {
468
465
FractionalMaxPool2d model (FractionalMaxPool2dOptions (3 ).output_size (2 ));
469
466
auto x = torch::ones ({2 , 5 , 5 }, torch::requires_grad ());
470
- torch::Tensor y, indices;
471
- std::tie (y, indices) = model->forward_with_indices (x);
467
+ auto [y, indices] = model->forward_with_indices (x);
472
468
473
469
ASSERT_EQ (y.dim (), 3 );
474
470
ASSERT_TRUE (torch::allclose (y, torch::ones ({2 , 2 , 2 })));
@@ -494,8 +490,7 @@ TEST_F(ModulesTest, FractionalMaxPool3d) {
494
490
TEST_F (ModulesTest, FractionalMaxPool3dReturnIndices) {
495
491
FractionalMaxPool3d model (FractionalMaxPool3dOptions (3 ).output_size (2 ));
496
492
auto x = torch::ones ({2 , 5 , 5 , 5 }, torch::requires_grad ());
497
- torch::Tensor y, indices;
498
- std::tie (y, indices) = model->forward_with_indices (x);
493
+ auto [y, indices] = model->forward_with_indices (x);
499
494
500
495
ASSERT_EQ (y.dim (), 4 );
501
496
ASSERT_TRUE (torch::allclose (y, torch::ones ({2 , 2 , 2 , 2 })));
@@ -655,8 +650,7 @@ TEST_F(ModulesTest, AdaptiveMaxPool1dReturnIndices) {
655
650
AdaptiveMaxPool1d model (3 );
656
651
auto x = torch::tensor (
657
652
{{{1 , 2 , 3 , 4 , 5 }}}, torch::dtype (torch::kFloat ).requires_grad (true ));
658
- torch::Tensor y, indices;
659
- std::tie (y, indices) = model->forward_with_indices (x);
653
+ auto [y, indices] = model->forward_with_indices (x);
660
654
661
655
ASSERT_EQ (y.dim (), 3 );
662
656
ASSERT_TRUE (torch::allclose (y, torch::tensor ({{{2 , 4 , 5 }}}, torch::kFloat )));
@@ -712,8 +706,7 @@ TEST_F(ModulesTest, AdaptiveMaxPool2dReturnIndicesEven) {
712
706
AdaptiveMaxPool2d model (3 );
713
707
auto x = torch::arange (0 ., 50 );
714
708
x.resize_ ({2 , 5 , 5 }).set_requires_grad (true );
715
- torch::Tensor y, indices;
716
- std::tie (y, indices) = model->forward_with_indices (x);
709
+ auto [y, indices] = model->forward_with_indices (x);
717
710
torch::Tensor s = y.sum ();
718
711
719
712
s.backward ();
@@ -746,8 +739,7 @@ TEST_F(ModulesTest, AdaptiveMaxPool2dReturnIndicesUneven) {
746
739
AdaptiveMaxPool2d model (AdaptiveMaxPool2dOptions ({3 , 2 }));
747
740
auto x = torch::arange (0 ., 40 );
748
741
x.resize_ ({2 , 5 , 4 }).set_requires_grad (true );
749
- torch::Tensor y, indices;
750
- std::tie (y, indices) = model->forward_with_indices (x);
742
+ auto [y, indices] = model->forward_with_indices (x);
751
743
torch::Tensor s = y.sum ();
752
744
753
745
s.backward ();
@@ -803,8 +795,7 @@ TEST_F(ModulesTest, AdaptiveMaxPool3dReturnIndices) {
803
795
AdaptiveMaxPool3d model (3 );
804
796
auto x = torch::arange (0 ., 64 );
805
797
x.resize_ ({1 , 4 , 4 , 4 }).set_requires_grad (true );
806
- torch::Tensor y, indices;
807
- std::tie (y, indices) = model->forward_with_indices (x);
798
+ auto [y, indices] = model->forward_with_indices (x);
808
799
torch::Tensor s = y.sum ();
809
800
810
801
s.backward ();
@@ -946,8 +937,7 @@ TEST_F(ModulesTest, MaxPool1d_MaxUnpool1d) {
946
937
MaxPool1d pool{MaxPool1dOptions (2 ).stride (2 )};
947
938
MaxUnpool1d unpool{MaxUnpool1dOptions (2 ).stride (2 )};
948
939
auto input = torch::tensor ({{{1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 }}}, torch::kFloat );
949
- torch::Tensor output, indices;
950
- std::tie (output, indices) = pool->forward_with_indices (input);
940
+ auto [output, indices] = pool->forward_with_indices (input);
951
941
ASSERT_TRUE (torch::allclose (
952
942
unpool (output, indices),
953
943
torch::tensor ({{{0 , 2 , 0 , 4 , 0 , 6 , 0 , 8 }}}, torch::kFloat )));
@@ -999,8 +989,7 @@ TEST_F(ModulesTest, MaxPool2d_MaxUnpool2d) {
999
989
auto input = torch::tensor (
1000
990
{{{{1 , 2 , 3 , 4 }, {5 , 6 , 7 , 8 }, {9 , 10 , 11 , 12 }, {13 , 14 , 15 , 16 }}}},
1001
991
torch::kFloat );
1002
- torch::Tensor output, indices;
1003
- std::tie (output, indices) = pool->forward_with_indices (input);
992
+ auto [output, indices] = pool->forward_with_indices (input);
1004
993
ASSERT_TRUE (torch::allclose (
1005
994
unpool (output, indices),
1006
995
torch::tensor (
@@ -1061,8 +1050,7 @@ TEST_F(ModulesTest, MaxPool3d_MaxUnpool3d) {
1061
1050
MaxPool3d pool{MaxPool3dOptions (3 ).stride (2 )};
1062
1051
MaxUnpool3d unpool{MaxUnpool3dOptions (3 ).stride (2 )};
1063
1052
auto input = torch::randn ({20 , 16 , 51 , 33 , 15 });
1064
- torch::Tensor output, indices;
1065
- std::tie (output, indices) = pool->forward_with_indices (input);
1053
+ auto [output, indices] = pool->forward_with_indices (input);
1066
1054
auto unpooled_output = unpool (output, indices);
1067
1055
ASSERT_EQ (
1068
1056
unpooled_output.sizes (), std::vector<int64_t >({20 , 16 , 51 , 33 , 15 }));
@@ -3755,9 +3743,7 @@ void _multihead_attn_test_helper(
3755
3743
/* dim=*/ 1 );
3756
3744
}
3757
3745
}
3758
- torch::Tensor attn_heads;
3759
- torch::Tensor ref_attn_weight;
3760
- std::tie (attn_heads, ref_attn_weight) = _scaled_dot_attn_ref (
3746
+ auto [attn_heads, ref_attn_weight] = _scaled_dot_attn_ref (
3761
3747
Q_split,
3762
3748
K_split,
3763
3749
V_split,
0 commit comments