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
julia>@time_importsusing KernelAbstractions
9.8 ms UnsafeAtomics
6.4 ms Atomix
┌ 0.8 ms SuiteSparse_jll.__init__()
116.4 ms SuiteSparse_jll 96.92% compilation time
┌ 8.2 ms SparseArrays.CHOLMOD.__init__() 95.65% compilation time
156.1 ms SparseArrays 5.03% compilation time
0.7 ms StaticArraysCore
182.0 ms StaticArrays
0.4 ms Adapt
0.2 ms AdaptStaticArraysExt
1.5 ms CEnum
0.2 ms LazyArtifacts
┌ 1.8 ms LLVMExtra_jll.__init__()
2.6 ms LLVMExtra_jll
┌ 0.2 ms LLVM.__init__()
31.2 ms LLVM
2.9 ms UnsafeAtomicsLLVM
12.1 ms KernelAbstractions
0.3 ms Statistics → SparseArraysExt
0.3 ms StaticArrays → StaticArraysStatisticsExt
On 1.11 these are the 2 packages adding to the bulk of load times. From the code, I could see StaticArrays being used for CPU shared memory implementation. Not sure where SparseArrays are being used exactly. Is there a way we can move these 2 dependencies to extensions?
I can create a PR, but I need some help in figuring out where these packages are being used 😅 (and if at all this change is welcome)
The text was updated successfully, but these errors were encountered:
SparseArrays can be moved to an extension, it was introduced in #269
StaticArrays is going to be much harder. We need a reliable implementation of a stack allocated array and StaticArrays is the closest thing we got and this is core functionality.
On 1.11 these are the 2 packages adding to the bulk of load times. From the code, I could see
StaticArrays
being used for CPU shared memory implementation. Not sure where SparseArrays are being used exactly. Is there a way we can move these 2 dependencies to extensions?I can create a PR, but I need some help in figuring out where these packages are being used 😅 (and if at all this change is welcome)
The text was updated successfully, but these errors were encountered: