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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Bug fixes and minor improvements
The R API was being accessed from inside multi-threaded code to seed the (non-R) random number generators. Probably this was causing users in downstream projects (seurat and monocle) to experience strange RcppParallel-related crashes. Thanks to aldojongejan for reporting this (#39).
Passing a floating point value smaller than one to n_threads caused a crash. This was particularly insidious if running with a system with only one default thread available as the default n_threads becomes 0.5. Now n_threads (and n_sgd_threads) are rounded to the nearest integer.
Initialization of supervised UMAP should now be faster (#34). Contributed by Aaron Lun.