Skip to content

Commit 915cc10

Browse files
committed
Remove test output code
1 parent 11c19c8 commit 915cc10

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

source/source_base/module_container/ATen/kernels/test/lapack_test.cpp

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -188,19 +188,6 @@ TYPED_TEST(LapackTest, heevx) {
188188
// check that A*V = E*V
189189
E = E.to_device<DEVICE_CPU>();
190190
V = V.to_device<DEVICE_CPU>();
191-
std::cout << "Eigenvalues E: ";
192-
for (int i = 0; i < neig; i++) {
193-
std::cout << E.data<Real>()[i] << " ";
194-
}
195-
std::cout << std::endl;
196-
197-
std::cout << "Eigenvectors V:" << std::endl;
198-
for (int i = 0; i < dim; i++) {
199-
for (int j = 0; j < neig; j++) {
200-
std::cout << V.data<Type>()[i + j * dim] << " ";
201-
}
202-
std::cout << std::endl;
203-
}
204191

205192
EXPECT_EQ(expected_C1, expected_C2);
206193
}

0 commit comments

Comments
 (0)