Re: Linking 64 bit app against vDSP other Accelerate libraries?
Re: Linking 64 bit app against vDSP other Accelerate libraries?
- Subject: Re: Linking 64 bit app against vDSP other Accelerate libraries?
- From: Rick Hoge <email@hidden>
- Date: Thu, 15 Nov 2007 09:00:24 -0500
vadd(&data1,1,&data2,1,&result,1,1);
What if you try the following? (how the API is documented)
vDSP_vadd(&data1,1,&data2,1,&result,1,1);
This worked - thanks. At the time this older code was written, the
API may have been documented differently.
You appear to be using vadd directly which appears to not exist for
ppc64 or x86_64 (see vDSP_translate.h and the fact that that header is
only included for i386 and ppc).
Adding the vDSP_ prefix to all affected methods allowed the code to
compile and run as 64b with no problems.
Rick
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden