@@ -62,7 +62,7 @@ function DistributionsAD.symm_turing_chol(x::TrackedArray{V,D}, check, uplo) whe
62
62
(factors,info), back = DistributionsAD. symm_turing_chol_back (x_value, check, uplo)
63
63
C = LinearAlgebra. Cholesky {eltype(factors), typeof(factors)} (factors, ' U' , info)
64
64
out = track (C. factors, D, tp)
65
- record! (tp, SpecialInstruction, DistributionsAD. symm_turing_chol, (x, check, uplo), out, (back, issuccess (C)))
65
+ record! (tp, SpecialInstruction, DistributionsAD. symm_turing_chol, (x, check, uplo), out, (back, LinearAlgebra . issuccess (C)))
66
66
return out, C. info
67
67
end
68
68
function DistributionsAD. turing_chol (x:: TrackedArray{V,D} , check) where {V,D}
@@ -71,7 +71,7 @@ function DistributionsAD.turing_chol(x::TrackedArray{V,D}, check) where {V,D}
71
71
(factors,info), back = DistributionsAD. turing_chol_back (x_value, check)
72
72
C = LinearAlgebra. Cholesky {eltype(factors), typeof(factors)} (factors, ' U' , info)
73
73
out = track (C. factors, D, tp)
74
- record! (tp, SpecialInstruction, DistributionsAD. turing_chol, (x, check), out, (back, issuccess (C)))
74
+ record! (tp, SpecialInstruction, DistributionsAD. turing_chol, (x, check), out, (back, LinearAlgebra . issuccess (C)))
75
75
return out, C. info
76
76
end
77
77
0 commit comments