Skip to content

Commit 78881d1

Browse files
committed
minor major error
1 parent d75cfdf commit 78881d1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/testTensor.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ TEST_F(TensorTest, parseTensorFromFileBinary) {
182182

183183
TEST_F(TensorTest, parseTensorFromBinaryPython) {
184184
std::string fName = "../../python/b_d.bt";
185-
DTensor<double> b = DTensor<double>::parseFromFile(fName, rowMajor);
185+
DTensor<double> b = DTensor<double>::parseFromFile(fName);
186186
for (size_t i=0; i<3; i++) {
187187
for (size_t j=0; j<3; j++) {
188188
EXPECT_NEAR(1 + 2*j + 6*i, b(i, j, 0), PRECISION_HIGH);

0 commit comments

Comments
 (0)