Re: Estimation of π using Leibniz series

2017-08-14 Thread alfrednewman
Our **lovely Nim** is outstanding !

Re: Nim in Action is now officially in print!

2017-08-14 Thread Krux02
Well as I found out, my Book is on the way, too. Yay. Well you did not get my feedback during the development of the Book, but I think you will get my feedback when I read it. Then you can use it for revision 1

Re: Practice code.

2017-08-14 Thread Krux02
Write a game

Re: Nim in Action is now officially in print!

2017-08-14 Thread zolern
Wow, final "ready for print" edition is pretty awesome. Great work!

Re: Estimation of π using Leibniz series

2017-08-14 Thread zolern
I am pretty sure that Julias's POW takes care that first argument is -1 and optimized it with something like MOD You can check it, I suppose that modified Julia code with MOD will take pretty same time as code with POW.

Re: Estimation of π using Leibniz series

2017-08-14 Thread alfrednewman
@zolern, thank you. Your code rocks. However, we are cheating Julia because in her code there is a **POW** instead **MOD**. I will modify / rerun the .jl script just to check the result.

Re: Estimation of π using Leibniz series

2017-08-14 Thread zolern
Well, my 10 cents import times, math proc leibniz(terms: int): float = var res = 0.0 for n in 0..terms: res = res + (if n mod 2 == 0: 1.0 else: -1.0) / float(2 * n + 1) return 4*res let t0 = cpuTime()

Re: Estimation of π using Leibniz series

2017-08-14 Thread Tiberium
It seems that Julia JIT is aware of SSE extensions and it uses them. GCC or MSVC should be emitting them too, but it depends on C code

Re: Estimation of π using Leibniz series

2017-08-14 Thread alfrednewman
Thank you all. @wiffel/Nibbler, in my Julia test, I was using Pro version 0.6.1 64 bit running on Windows 10. Now, running the same .jl code on a Windows 8 64 bit (i5 CPU 650 @ 3.20GHz, 3193 Mhz, 2 Cores, 4 Processors) I got the following: 2.763225 seconds (1.77 k allocations:

Re: Estimation of π using Leibniz series

2017-08-14 Thread Nibbler
I compiled the same approximate version to C with gcc optimisations on, and found the execution time to be roughly comparable between Nim and C. Could Julia's JIT be doing some sort of optimisation that shortcuts the full code somehow? With the Nim version: import times, math

Re: Estimation of π using Leibniz series

2017-08-14 Thread wiffel
@alfrednewman I tried to replicate your test. On my computer the following (slightly modified version) of the _nim_ program and the _julia_ program have the same runtime. Whatever I do, I fail to run the _julia_ version in less than 2 seconds (as you had). Are you sure that test went OK?

Re: Estimation of π using Leibniz series

2017-08-14 Thread LeuGim
At least so: `res += float([1,-1][n mod 2])/(2.0*float(n)+1.0)`.

Re: Estimation of π using Leibniz series

2017-08-14 Thread andrea
That call to `pow` to change sign may be a possible reason of slowdown.

Estimation of π using Leibniz series

2017-08-14 Thread alfrednewman
Hello, How can I optimize the speed of the following proc: import times, math proc leibniz(terms: int): float = var res = 0.0 for n in 0..terms: res += pow(-1.0,float(n))/(2.0*float(n)+1.0) return 4*res let t0 = cpuTime()

Re: Nim in Action is now officially in print!

2017-08-14 Thread alfrednewman
Great Job !! Mine is on the way ! All the best.

Nim in Action is now officially in print!

2017-08-14 Thread dom96
**I'm pleased to announce that Nim in Action is now in print.** I just received one of the very first printed copies, which means that if you bought the printed book you should receive a copy soon as well! Some pictures of the finished product: [(more