Skip to content

Commit 00f38f5

Browse files
authored
Merge pull request #444 from dash-project/bug-matrix-delalloc
fixed pattern in MatrixTest.DelayedAlloc ...
2 parents 5027809 + 8bf515f commit 00f38f5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

dash/test/container/MatrixTest.cc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -865,9 +865,9 @@ TEST_F(MatrixTest, DelayedAlloc)
865865
extent_j,
866866
extent_k),
867867
dash::DistributionSpec<3>(
868-
num_units_i < 2 ? dash::NONE : dash::TILE(tilesize_i),
869-
num_units_j < 2 ? dash::NONE : dash::TILE(tilesize_j),
870-
num_units_k < 2 ? dash::NONE : dash::TILE(tilesize_k)),
868+
dash::TILE(tilesize_i),
869+
dash::TILE(tilesize_j),
870+
dash::TILE(tilesize_k)),
871871
teamspec
872872
);
873873

@@ -973,9 +973,9 @@ TEST_F(MatrixTest, DelayedAlloc)
973973
extent_i,
974974
extent_j,
975975
extent_k,
976-
num_units_i < 2 ? dash::NONE : dash::TILE(tilesize_i),
977-
num_units_j < 2 ? dash::NONE : dash::TILE(tilesize_j),
978-
num_units_k < 2 ? dash::NONE : dash::TILE(tilesize_k),
976+
dash::TILE(tilesize_i),
977+
dash::TILE(tilesize_j),
978+
dash::TILE(tilesize_k),
979979
teamspec
980980
);
981981
}

0 commit comments

Comments
 (0)