12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <html lang="en">
- <head>
- <title>lapack exceptions - avram - a virtual machine code interpreter</title>
- <meta http-equiv="Content-Type" content="text/html">
- <meta name="description" content="avram - a virtual machine code interpreter">
- <meta name="generator" content="makeinfo 4.13">
- <link title="Top" rel="start" href="index.html#Top">
- <link rel="up" href="lapack.html#lapack" title="lapack">
- <link rel="prev" href="lapack-calling-conventions.html#lapack-calling-conventions" title="lapack calling conventions">
- <link rel="next" href="Additional-lapack-notes.html#Additional-lapack-notes" title="Additional lapack notes">
- <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
- <meta http-equiv="Content-Style-Type" content="text/css">
- <style type="text/css"><!--
- pre.display { font-family:inherit }
- pre.format { font-family:inherit }
- pre.smalldisplay { font-family:inherit; font-size:smaller }
- pre.smallformat { font-family:inherit; font-size:smaller }
- pre.smallexample { font-size:smaller }
- pre.smalllisp { font-size:smaller }
- span.sc { font-variant:small-caps }
- span.roman { font-family:serif; font-weight:normal; }
- span.sansserif { font-family:sans-serif; font-weight:normal; }
- --></style>
- </head>
- <body>
- <div class="node">
- <a name="lapack-exceptions"></a>
- <p>
- Next: <a rel="next" accesskey="n" href="Additional-lapack-notes.html#Additional-lapack-notes">Additional lapack notes</a>,
- Previous: <a rel="previous" accesskey="p" href="lapack-calling-conventions.html#lapack-calling-conventions">lapack calling conventions</a>,
- Up: <a rel="up" accesskey="u" href="lapack.html#lapack">lapack</a>
- <hr>
- </div>
- <h4 class="subsection">D.10.2 <code>lapack</code> exceptions</h4>
- <ul>
- <li>Any of these functions can return a message of
- <pre class="example"> <'memory overflow'>
- </pre>
- <p>if it runs out of memory.
- <li>If the input parameters don't meet the
- specification, they can also return
- <a name="index-bad-lapack-specification-758"></a>
- <pre class="example"> <'bad lapack specification'>
- </pre>
- <li>Any unexpected behavior from the <code>LAPACK</code> Fortran functions or
- irregular status returned by them is reported by the message
- <a name="index-lapack-error-759"></a>
- <pre class="example"> <'lapack error'>
- </pre>
- <p class="noindent">Getting to the bottom of it may require some debugging
- of the <code>avram</code> source code in the file <samp><span class="file">lapack.c</span></samp>.
- </ul>
- </body></html>
|