Marcus Huntemann
Marcus Huntemann
Current OpenCL drivers from Nvidia limit their maximum memory objects to 1/4th of the device memory. This is a big restriction in adda as the major memory usage is from...
Replace an anonymous function with Base.Fix1 for type stability in some cases, see #639
Running the following code ```julia using ForwardDiff using StaticArrays f(x)=SA[x[1]^2+x[2]^2, x[2]^2+x[3]^2] x=SA[1.0,2,3] y=f(x) imdr=DiffResults.JacobianResult(y,x) @code_warntype ForwardDiff.jacobian!(imdr,f,x) ``` shows up as not type stable for me in Julia 1.8.5. Maybe also...
After #31 I realized that in my application I suddenly needed all distortion parameters K1 to K3 instead of only K1 to match the image distortion of the camera I...