Re: [julia-users] Benchmarking a function with parameters

2016-11-15 Thread Uwe Fechner
This was not the problem. The problem was, that I was using "Run" from within Juno. In that case, the result of @benchmark is not printed. Using: println(@benchmark ) solved the problem. Uwe On Monday, November 14, 2016 at 3:12:31 PM UTC+1, Yichao Yu wrote: > > On Mon, Nov 14, 2016 at 8:16

Re: [julia-users] Benchmarking a function with parameters

2016-11-14 Thread Yichao Yu
On Mon, Nov 14, 2016 at 8:16 AM, Uwe Fechner wrote: > Hello, > > why does the following code not work (no benchmark result shown, no error > message or warning): > using BenchmarkTools > > function add2!(vec, result) > """ Calculate the sum of two 3d vectors and store the result in the > secon

[julia-users] Benchmarking a function with parameters

2016-11-14 Thread Uwe Fechner
Hello, why does the following code not work (no benchmark result shown, no error message or warning): using BenchmarkTools function add2!(vec, result) """ Calculate the sum of two 3d vectors and store the result in the second parameter. """ [result[i] = vec[i] + result[i] for i in [1, 2