Arundhyoti Sarkar
Results
2
issues of
Arundhyoti Sarkar
I have the following code for Parzen Density estimator using Gaussian kernel. It gives me similar but different elapsed time with @acc and without. How do I determine if the...
ParallelAccelerator fails to optimize the following function. ``` julia using ParallelAccelerator function test(x::Int, k = nothing) if k == nothing println("1 Parameter") else println("2 Parameters") end end test(4) test(4,1) ```