Re: Estimation of π using Leibniz series

2017-08-14 Thread LeuGim
Using exponentiation just for interlacing 1, -1, 1, -1, ... is pointless (apart from mathematical formulas on paper) and should not be done, so no matter if some compiler optimizes it.

Re: Nim in Action is now officially in print!

2017-08-14 Thread adamss3
My copy just arrived today. Will start to read it later today.

Re: Estimation of π using Leibniz series

2017-08-14 Thread wiffel
@zolern : I'm wondering too why the original nim version is that slow. Using the windows version of nim on my computer (i7-6650, 3.60GHz, Windows 10 Pro 64-bit) is already faster at running my version of the program (see below) then running it under _windows/bash/ubuntu_ (what I did before). The

Re: Estimation of π using Leibniz series

2017-08-14 Thread zolern
I am still confused that Nim's pow is so unexpectedly slow: Nim just calls C library function pow from , wtf? Anyway, last edition (without pow) is just fast & furious And Nim is awesome, no doubt!

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() echo(leibniz(100_000_0

Re: Estimation of π using Leibniz series

2017-08-14 Thread nvill
Julia compiles with `-march=native` by default so try passing `--passC:"-march=native"` to Nim. I have this in my `~/.config/nim.cfg` along with `--passC:"-flto"` (for release mode).

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: 95.

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() echo

Re: Nim in Action is now officially in print!

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