I'm using the Accelerate framework to solve a under/overdetermined system of linear equations. The routine I'm using is dgelsd_ originally from LAPACK.

dgelsd_( &m, &n, &nrhs, a_t, &lda, b, &ldb, s, &RCOND, &IRANK, work, &workSize, iWork, &info);

This works fine in the simulator, where on supplying matrices a_t and b, the result is returned correctly in b. However, when I try this on the device, the result is all zeroes.

Where could I be going wrong? I have allocated a certain amount of working memory for the routine, as required, but I ran a check with the profiler and memory doesn't seem to be the issue.

Has anyone got LAPACK routines to work correctly on the iPhone device? Thanks.

Edit: iPhone SDK version 4.2, Device iPhone 4

link|improve this question
What device/OS are you trying to run this on? – Joshua Weinberg Jun 3 '11 at 20:13
feedback

3 Answers

up vote 3 down vote accepted

Looks like it's a known issue when using double precision.

Solution: Use single-precision, i.e. Floats.

link|improve this answer
feedback

I am using sgesv_ (single-precison) to solve a 1200x1200 equation system. The execution time on an iPhone 4 is 1.1 s, compared to 60 s when using my old "manual" method.

link|improve this answer
feedback

LAPACK isn't available on ios devices - only BLAS and vDSP. It works on the simulator because that library is available on mac. iOS Accelerate Reference

link|improve this answer
1  
I beg to differ. With IOS 4.0, Apple introduced LAPACK functions into Accelerate for iPhone. Changelog here. – Warr1ck Jun 4 '11 at 1:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.