Finishing the app & preview
Finishing up the work In the last post, we've seen the frontend of our Interpolation visualizer iPhone app. In order to make the app functional, we'll now write the backend portion of the app: the code that will perform computations of the interpolation functions. We'll also show how we can call the Neural Engine in modern iPhone to help accelerate this process. The code block(s) The first section of the code initialize these following libraries. 1. CoreGraphics libraries 2. Accelerated Vector Computation libraries 3. SIMD (Single Instruction Multiple Data) libraries. In which the focus point is the Accelerate.vecLib libraries, this is the libraries that allow the Neural Engine in the iPhone to help assist in interpolation computation. And, SIMD libraries allows for parallelization of the computation processes, further improving the application performance. We can also sees that the backend also initialize the interpolated graph Axes and what algorithm to use, in this cas...