-
When I use msys to compile julia, is show error that 'git command not found ',how can I fix it ?
-
On my system, the following diagnostic suggests that our alias table is much slower than a naive sampler for a small number of categories.
```
using Distributions
d = fit(Categorical, [1, 1, 2, 3])
…
-
DSFMT needs a 64-bit interface. Currently, it seems to use `int` for array sizes.
-
julia> ceil(BigFloat(2.1))
error: stack overflow
in ceil at math.jl:119
(The last line is repeated many times)
round() also fails in a similar manner; I haven't tested other similar functions.
mbaz updated
11 years ago
-
After commit 1ba9a6da61bc578e7a3d004a53c30c026e118f4d I cannot build graphic anymore
make[3]: uscita dalla directory "/home/locutus/branches/boinc_stuff/milkywayathome_client/obj-x86_64-linux-gnu"
ma…
-
I'm having trouble compiling on windows 7. I've tried three environments:
MinGW
I have an install of MinGW that includes all the compilers it optionally installs (including fortran). From the MingGW3…
-
These library interfaces are currently limited to `Int32`. We should build them with 64-bit size support, or give errors for arrays that are too big.
-
FFTW also has a 32-bit interface. As per the documentation, it seems that we have to use the guru interface to get 64-bit.
http://www.fftw.org/doc/64_002dbit-Guru-Interface.html#64_002dbit-Guru-Inter…
-
randn might be slower than it should be in some environments. I see:
```
julia> [@time (rand(1,10000000); gc()) for x = 1:10];
elapsed time: 0.030134916305541992 seconds
elapsed time: 0.0309810638427…
-
Somewhat unexpectedly (especially for people used to Matlab), Julia gives:
```
julia> fft([1. 2. 3.])
1x3 Complex128 Array:
1.0+0.0im 2.0+0.0im 3.0+0.0im
```
because Julia defines fft(X) = fft(X,…