Skip to content

Commit 62d695a

Browse files
committed
Update lapack_test to new interface
1 parent 831625e commit 62d695a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,8 @@ TYPED_TEST(LapackTest, heevd) {
201201
const Type beta = static_cast<Type>(0.0);
202202
// Note all blas and lapack operators within container are column major!
203203
// For this reason, we should employ 'L' instead of 'U' in the subsequent line.
204-
heevdCalculator('V', 'U', B.data<Type>(), dim, E.data<Real>());
204+
// heevdCalculator('V', 'U', B.data<Type>(), dim, E.data<Real>());
205+
heevdCalculator(dim, B.data<Type>(), dim, E.data<Real>());
205206

206207
E = E.to_device<DEVICE_CPU>();
207208
const Tensor Alpha = std::move(Tensor({

0 commit comments

Comments
 (0)