| | 42 | The rest of the !ThirdParty packages must be installed from the provided libraries in the {{{nektar++-3.2.0/ThirdParty}}} directory. |
| | 43 | |
| | 44 | * '''TinyXML'''[[BR]]At the terminal in {{{ThirdParty/}}}, extract the {{{tinyxml_2_4_3.zip}}} archive with |
| | 45 | {{{#!sh |
| | 46 | unzip tinyxml_2_4_3.zip |
| | 47 | }}} |
| | 48 | |
| | 49 | * '''Loki'''[[BR]]Extract the loki-0.1.3.tar.bz2 archive with |
| | 50 | {{{#!sh |
| | 51 | tar -xjvf loki-0.1.3.tar.bz2 |
| | 52 | }}} |
| | 53 | This will create loki-0.1.3/. |
| | 54 | |
| | 55 | * '''NIST Sparse BLAS'''[[BR]]Extract and compile the sparse matrix library developed by NIST. |
| | 56 | For more information about this library, see http://math.nist.gov/spblas/original.html |
| | 57 | {{{#!sh |
| | 58 | tar -xjvf spblastk0.9b.tar.bz2 |
| | 59 | cd spblastk0.9b/build/ |
| | 60 | cmake ../ |
| | 61 | make install |
| | 62 | }}} |
| | 63 | |
| | 64 | * '''mod-METIS'''[[BR]]Extract and compile the graph partitioning package METIS. As we use a modified version of the standard METIS distribution, you are required to link against this version rather than the standard version possibly available on your system. |
| | 65 | For more information about the original METIS library, see http://www.cs.umn.edu/~karypis/metis |
| | 66 | {{{#!sh |
| | 67 | tar -xjvf modmetis-4.0.tar.bz2 |
| | 68 | cd modmetis-4.0/ |
| | 69 | cmake ../ |
| | 70 | make install |
| | 71 | }}} |
| | 72 | |