I started encountering errors in some of my Julia code (running on Windows 64-bit Julia 0.3.0), and was able to isolate the problem to the following:
A = rand(Float32, 20, 30, 40, 2); size(A) which returned (20,30,0,0) ...which is obviously wrong. I uninstalled Julia, reinstalled it, and tried again, giving the same result. I then installed the 32-bit 0.3.0, which gave the correct result of (20,30,40,2). Has anyone else experienced this issue? Where should I look to try to figure out why my 64-bit copy is giving wrong results, even after a fresh reinstall?
