Skip to content

Commit c8c316c

Browse files
committed
cholesky async
1 parent d399173 commit c8c316c

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/linearalgebra.cpp

-4
Original file line numberDiff line numberDiff line change
@@ -178,10 +178,6 @@ NAN_METHOD(CholeskyInPlace)
178178
if (args.Length() > 1) isUpper = args[1]->BooleanValue();
179179
NanAsyncQueueWorker(new Worker<int>(GetCallback(args), [=]() mutable { Guard(); return af::choleskyInPlace(array, isUpper); }));
180180
NanReturnUndefined();
181-
/*Guard();
182-
af::array out;
183-
int r = af::choleskyInPlace(*pArray, isUpper);
184-
NanReturnValue(r);*/
185181
}
186182
ARRAYFIRE_CATCH;
187183
}

0 commit comments

Comments
 (0)