Simen Gaure
Simen Gaure
Even though a `ChainedVector` is an `AbstractVector`, the `KSampleADTest` does not accept such vectors. It can of course be circumvented with a `collect` on the vector first. `DataFrames` has a...
Integers like `Int7` and `Int53` are supported via `llvmcall`. The storage size, the size of the primitive type, is the next multiple of 8. At some point in time, julia...
I have looked into using scoped values for some temporary arrays to avoid allocations in parallel tasks. However, it seems scoped values are allocating when accessed, whereas with tls it...
```julia function sumN(N) s = zero(N) for i in 1:N s += i end s end julia> @btime sumN(N) setup=(N=1_000_000) 2.424 ns (0 allocations: 0 bytes) 500000500000 julia> @btime sumN(N)...