NCSA Home
Contact Us Intranet

SGI Altix UV Programming, Software, and Libraries FAQ

User Information Home
Data
Security
Allocations
Consulting
Training

NCSA's Help Desk is available 24 hours a day, seven days a week, 365 days a year:
help.ncsa.illinois.edu
217-244-0710
help@ncsa.illinois.edu

 

How do I find the version of the Intel compilers?

    The -V option displays complete compiler version information. Use -dumpversion to display the compiler version number only.

When linking Fortran code, I see error messages of the form relocation truncated to fit. What does this mean?

Where are the commands to compile my MPI program (mpicc, mpif90, etc.)?

    The MPI implementation on Ember is SGI's Message Passing Toolkit (MPT). For information on compiling your MPI program, see NCSA's SGI Altix UV Programming Environment web page.

Where can I find out about HDF on Ember?

How do I use modules on Ember?

    See the Modules documentation for information.

I get error error #10001: could not find directory in which g++ resides when I compile my code in a batch job.

    The GNU compiler suite (gcc) is not in the default environment on the compute hosts, and the Intel compilers use this. When compiling in batch, add the following line:
    module load gcc
    
    to your batch script to load the gcc environment.

I get error ld: gcc: No such file or directory when I link my application in a batch job.

    The GNU compiler suite (gcc) is not in the default environment on the compute hosts, and the Intel compilers use this. When compiling or linking in batch, add the following line:
    module load gcc
    
    to your batch script to load the gcc environment.

Where can I find a list of Software Applications available on Ember?