You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the findn and findnz methods for SparseMatrixCSC, defined in base/sparse/sparsematrix.jl, warnings are declared as
elseprintln("warning: sparse matrix contains explicit stored zeros")
end
instead of using warn. Perhaps we could change that.
(I found this out when calling findnz(A) where nnz(A) was close to a million and it happened to include over 6000 values that could be zero for certain parameter values. There is no way to shut off 6000 calls to println.)
The text was updated successfully, but these errors were encountered:
* upstream/master: (53 commits)
edit embedding chapter
formatting fixes
FixJuliaLang#5056
more consitent/useful description of predicate in ie all()
NEWS for JuliaLang#4042
Add sparse matvec to perf benchmark (#4707)
Use warn_once instead of warn (JuliaLang#5038)
Use warn() instead of println in base/sprase/sparsematrix.jl
allow scale(b,A) or scale(A,b) when b is a scalar as well as a vector, don't restrict scale unnecessarily to arrays of numbers (e.g. scaling arrays of arrays should work), and improve documentation for scale\!
Added section about memory management
added negative bitarray rolling
More accurate linspace for types with greater precision than Float64
add realmin realmax for BigFloat
fix eps(realmax), add typemin and typemax for BigFloat
fixJuliaLang#5025, ordering used by nextfloat/prevfloat
roll back on errors during type definitions. fixesJuliaLang#5009
improve method signature errors. fixesJuliaLang#5018
update juliadoc
add more asserts for casts
Fix segfaulting on strstr() failure
...
In the
findn
andfindnz
methods forSparseMatrixCSC
, defined inbase/sparse/sparsematrix.jl
, warnings are declared asinstead of using
warn
. Perhaps we could change that.(I found this out when calling
findnz(A)
wherennz(A)
was close to a million and it happened to include over 6000 values that could be zero for certain parameter values. There is no way to shut off 6000 calls toprintln
.)The text was updated successfully, but these errors were encountered: