Re: [julia-users] Delayed output

2015-08-30 Thread René Donner
Thanks for the info. I filed an issue with IJulia about this: https://github.com/JuliaLang/IJulia.jl/issues/347 Am 29.08.2015 um 22:12 schrieb Christoph Ortner christophortn...@gmail.com: Many thanks for this: * On 0.3.11, it works fine for me * On Version 0.4.0-dev+6297 (2015-07-27

Re: [julia-users] Delayed output

2015-08-29 Thread Christoph Ortner
P.S.: Mac OS X 10.10.5

Re: [julia-users] Delayed output

2015-08-29 Thread Christoph Ortner
Many thanks for this: * On 0.3.11, it works fine for me * On Version 0.4.0-dev+6297 (2015-07-27 21:28 UTC) I have the same problem you mention. My system: Python 2.7.9 |Anaconda 2.2.0 IPython 3.0.0 Thanks, Christoph

[julia-users] Delayed output

2015-08-28 Thread Christoph Ortner
If I use `println` or `@show` to output intermediate results of a computation in IJulia, the output is often delayed until the computation is completed. How can I prevent this? Thanks, Christoph

Re: [julia-users] Delayed output

2015-08-28 Thread René Donner
Interesting, even this print(1:4); flush(STDOUT); svd(rand(1000,1000)); println(done); prints 1: and after the svd is done 4done, so flushing does not seem to help here. I am also seeing this often. Something must have introduced this in the last 2-3 weeks, used to work just fine. Am

Re: [julia-users] Delayed output

2015-08-28 Thread René Donner
Can you try whether adding a flush(STDOUT) after the print statement makes any difference? Am 28.08.2015 um 15:16 schrieb Christoph Ortner christophortn...@gmail.com: If I use `println` or `@show` to output intermediate results of a computation in IJulia, the output is often delayed until