I need to do comparison operations on two arrays using vDSP. I don't see any direct functions to do that.
//....sourceArray is filled up with data
float sourceArray = new float[arrayLength];
//....destArray is filled up with data
float destArray = new float[arrayLength];
//...need to compare the two arrays
//...(for eg., how many elements are equal/greater than/less than etc., If so then 1, else 0)
Any workaround using existing vDSP functions will also help.
I have used MMX, SSE, and SSE2 Intrinsics before a lot and there are many function to do this. But unable to find similar functions here.