We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11c19c8 commit 915cc10Copy full SHA for 915cc10
source/source_base/module_container/ATen/kernels/test/lapack_test.cpp
@@ -188,19 +188,6 @@ TYPED_TEST(LapackTest, heevx) {
188
// check that A*V = E*V
189
E = E.to_device<DEVICE_CPU>();
190
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
203
204
205
EXPECT_EQ(expected_C1, expected_C2);
206
}
0 commit comments