Skip to content

Commit 5f761ff

Browse files
committed
fixup! TEMP: Debug Cholesky non-PosDef fail
1 parent ab7b20d commit 5f761ff

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Diff for: src/array/cholesky.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
LinearAlgebra.cholcopy(A::DArray{T,2}) where T = copy(A)
22
function potrf_checked!(uplo, A, info_arr)
33
_A, info = move(thunk_processor(), LAPACK.potrf!)(uplo, A)
4-
if info > 0
4+
if info != 0
55
info_arr[1] = info
66
throw(PosDefException(info))
77
end

Diff for: src/datadeps.jl

-1
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,6 @@ function distribute_tasks!(queue::DataDepsTaskQueue)
454454

455455
# Round-robin assign tasks to processors
456456
upper_queue = get_options(:task_queue)
457-
@show upper_queue
458457

459458
traversal = queue.traversal
460459
if traversal == :inorder

0 commit comments

Comments
 (0)