Skip to content
Snippets Groups Projects
Commit a87e6366 authored by Lukáš Krupčík's avatar Lukáš Krupčík
Browse files

[ -> [

parent fe8a0e6b
No related branches found
No related tags found
5 merge requests!368Update prace.md to document the change from qprace to qprod as the default...,!367Update prace.md to document the change from qprace to qprod as the default...,!366Update prace.md to document the change from qprace to qprod as the default...,!323extended-acls-storage-section,!74Md revision
Pipeline #
Showing
with 21 additions and 21 deletions
...@@ -8,7 +8,7 @@ After logging in, you may want to configure the environment. Write your preferre ...@@ -8,7 +8,7 @@ After logging in, you may want to configure the environment. Write your preferre
# ./bashrc # ./bashrc
# Source global definitions # Source global definitions
if [ -f /etc/bashrc ]; then if [-f /etc/bashrc ]; then
. /etc/bashrc . /etc/bashrc
fi fi
...@@ -17,7 +17,7 @@ alias qs='qstat -a' ...@@ -17,7 +17,7 @@ alias qs='qstat -a'
module load PrgEnv-gnu module load PrgEnv-gnu
# Display information to standard output - only in interactive ssh session # Display information to standard output - only in interactive ssh session
if [ -n "$SSH_TTY" ] if [-n "$SSH_TTY" ]
then then
module list # Display loaded modules module list # Display loaded modules
fi fi
......
...@@ -34,7 +34,7 @@ procs_per_host=1 ...@@ -34,7 +34,7 @@ procs_per_host=1
hl="" hl=""
for host in `cat $PBS_NODEFILE` for host in `cat $PBS_NODEFILE`
do do
if [ "$hl" = "" ] if ["$hl" = "" ]
then hl="$host:$procs_per_host" then hl="$host:$procs_per_host"
else hl="${hl}:$host:$procs_per_host" else hl="${hl}:$host:$procs_per_host"
fi fi
......
...@@ -100,8 +100,8 @@ To run ANSYS Fluent in batch mode with user's config file you can utilize/modify ...@@ -100,8 +100,8 @@ To run ANSYS Fluent in batch mode with user's config file you can utilize/modify
cd $PBS_O_WORKDIR cd $PBS_O_WORKDIR
#We assume that if they didn’t specify arguments then they should use the #We assume that if they didn’t specify arguments then they should use the
#config file if [ "xx${input}${case}${mpp}${fluent_args}zz" = "xxzz" ]; then #config file if ["xx${input}${case}${mpp}${fluent_args}zz" = "xxzz" ]; then
if [ -f pbs_fluent.conf ]; then if [-f pbs_fluent.conf ]; then
. pbs_fluent.conf . pbs_fluent.conf
else else
printf "No command line arguments specified, " printf "No command line arguments specified, "
......
...@@ -39,7 +39,7 @@ procs_per_host=1 ...@@ -39,7 +39,7 @@ procs_per_host=1
hl="" hl=""
for host in `cat $PBS_NODEFILE` for host in `cat $PBS_NODEFILE`
do do
if [ "$hl" = "" ] if ["$hl" = "" ]
then hl="$host:$procs_per_host" then hl="$host:$procs_per_host"
else hl="${hl}:$host:$procs_per_host" else hl="${hl}:$host:$procs_per_host"
fi fi
......
...@@ -35,7 +35,7 @@ procs_per_host=1 ...@@ -35,7 +35,7 @@ procs_per_host=1
hl="" hl=""
for host in `cat $PBS_NODEFILE` for host in `cat $PBS_NODEFILE`
do do
if [ "$hl" = "" ] if ["$hl" = "" ]
then hl="$host:$procs_per_host" then hl="$host:$procs_per_host"
else hl="${hl}:$host:$procs_per_host" else hl="${hl}:$host:$procs_per_host"
fi fi
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
**[SVS FEM](http://www.svsfem.cz/)** as **[ANSYS Channel partner](http://www.ansys.com/)** for Czech Republic provided all ANSYS licenses for ANSELM cluster and supports of all ANSYS Products (Multiphysics, Mechanical, MAPDL, CFX, Fluent, Maxwell, LS-DYNA...) to IT staff and ANSYS users. If you are challenging to problem of ANSYS functionality contact please [hotline@svsfem.cz](mailto:hotline@svsfem.cz?subject=Ostrava%20-%20ANSELM) **[SVS FEM](http://www.svsfem.cz/)** as **[ANSYS Channel partner](http://www.ansys.com/)** for Czech Republic provided all ANSYS licenses for ANSELM cluster and supports of all ANSYS Products (Multiphysics, Mechanical, MAPDL, CFX, Fluent, Maxwell, LS-DYNA...) to IT staff and ANSYS users. If you are challenging to problem of ANSYS functionality contact please [hotline@svsfem.cz](mailto:hotline@svsfem.cz?subject=Ostrava%20-%20ANSELM)
Anselm provides commercial as well as academic variants. Academic variants are distinguished by "**Academic...**" word in the name of license or by two letter preposition "**aa\_**" in the license feature name. Change of license is realized on command line respectively directly in user's PBS file (see individual products). [ More about licensing here](ansys/licensing/) Anselm provides commercial as well as academic variants. Academic variants are distinguished by "**Academic...**" word in the name of license or by two letter preposition "**aa\_**" in the license feature name. Change of license is realized on command line respectively directly in user's PBS file (see individual products). [More about licensing here](ansys/licensing/)
To load the latest version of any ANSYS product (Mechanical, Fluent, CFX, MAPDL,...) load the module: To load the latest version of any ANSYS product (Mechanical, Fluent, CFX, MAPDL,...) load the module:
......
...@@ -245,7 +245,7 @@ Some interesting compiler flags useful not only for code debugging are: ...@@ -245,7 +245,7 @@ Some interesting compiler flags useful not only for code debugging are:
Intel MKL includes an Automatic Offload (AO) feature that enables computationally intensive MKL functions called in user code to benefit from attached Intel Xeon Phi coprocessors automatically and transparently. Intel MKL includes an Automatic Offload (AO) feature that enables computationally intensive MKL functions called in user code to benefit from attached Intel Xeon Phi coprocessors automatically and transparently.
Behavioral of automatic offload mode is controlled by functions called within the program or by environmental variables. Complete list of controls is listed [ here](http://software.intel.com/sites/products/documentation/doclib/mkl_sa/11/mkl_userguide_lnx/GUID-3DC4FC7D-A1E4-423D-9C0C-06AB265FFA86.htm). Behavioral of automatic offload mode is controlled by functions called within the program or by environmental variables. Complete list of controls is listed [here](http://software.intel.com/sites/products/documentation/doclib/mkl_sa/11/mkl_userguide_lnx/GUID-3DC4FC7D-A1E4-423D-9C0C-06AB265FFA86.htm).
The Automatic Offload may be enabled by either an MKL function call within the code: The Automatic Offload may be enabled by either an MKL function call within the code:
...@@ -259,7 +259,7 @@ or by setting environment variable ...@@ -259,7 +259,7 @@ or by setting environment variable
$ export MKL_MIC_ENABLE=1 $ export MKL_MIC_ENABLE=1
``` ```
To get more information about automatic offload please refer to "[Using Intel® MKL Automatic Offload on Intel ® Xeon Phi™ Coprocessors](http://software.intel.com/sites/default/files/11MIC42_How_to_Use_MKL_Automatic_Offload_0.pdf)" white paper or [ Intel MKL documentation](https://software.intel.com/en-us/articles/intel-math-kernel-library-documentation). To get more information about automatic offload please refer to "[Using Intel® MKL Automatic Offload on Intel ® Xeon Phi™ Coprocessors](http://software.intel.com/sites/default/files/11MIC42_How_to_Use_MKL_Automatic_Offload_0.pdf)" white paper or [Intel MKL documentation](https://software.intel.com/en-us/articles/intel-math-kernel-library-documentation).
### Automatic Offload Example ### Automatic Offload Example
......
File deleted
...@@ -8,7 +8,7 @@ After logging in, you may want to configure the environment. Write your preferre ...@@ -8,7 +8,7 @@ After logging in, you may want to configure the environment. Write your preferre
# ./bashrc # ./bashrc
# Source global definitions # Source global definitions
if [ -f /etc/bashrc ]; then if [-f /etc/bashrc ]; then
. /etc/bashrc . /etc/bashrc
fi fi
...@@ -17,7 +17,7 @@ alias qs='qstat -a' ...@@ -17,7 +17,7 @@ alias qs='qstat -a'
module load intel/2015b module load intel/2015b
# Display information to standard output - only in interactive ssh session # Display information to standard output - only in interactive ssh session
if [ -n "$SSH_TTY" ] if [-n "$SSH_TTY" ]
then then
module list # Display loaded modules module list # Display loaded modules
fi fi
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
Welcome to Salomon supercomputer cluster. The Salomon cluster consists of 1008 compute nodes, totaling 24192 compute cores with 129 TB RAM and giving over 2 Pflop/s theoretical peak performance. Each node is a powerful x86-64 computer, equipped with 24 cores, at least 128 GB RAM. Nodes are interconnected by 7D Enhanced hypercube InfiniBand network and equipped with Intel Xeon E5-2680v3 processors. The Salomon cluster consists of 576 nodes without accelerators and 432 nodes equipped with Intel Xeon Phi MIC accelerators. Read more in [Hardware Overview](hardware-overview/). Welcome to Salomon supercomputer cluster. The Salomon cluster consists of 1008 compute nodes, totaling 24192 compute cores with 129 TB RAM and giving over 2 Pflop/s theoretical peak performance. Each node is a powerful x86-64 computer, equipped with 24 cores, at least 128 GB RAM. Nodes are interconnected by 7D Enhanced hypercube InfiniBand network and equipped with Intel Xeon E5-2680v3 processors. The Salomon cluster consists of 576 nodes without accelerators and 432 nodes equipped with Intel Xeon Phi MIC accelerators. Read more in [Hardware Overview](hardware-overview/).
The cluster runs [CentOS Linux](http://www.bull.com/bullx-logiciels/systeme-exploitation.html) operating system, which is compatible with the RedHat [ Linux family.](http://upload.wikimedia.org/wikipedia/commons/1/1b/Linux_Distribution_Timeline.svg) The cluster runs [CentOS Linux](http://www.bull.com/bullx-logiciels/systeme-exploitation.html) operating system, which is compatible with the RedHat [Linux family.](http://upload.wikimedia.org/wikipedia/commons/1/1b/Linux_Distribution_Timeline.svg)
**Water-cooled Compute Nodes With MIC Accelerator** **Water-cooled Compute Nodes With MIC Accelerator**
......
...@@ -34,7 +34,7 @@ procs_per_host=1 ...@@ -34,7 +34,7 @@ procs_per_host=1
hl="" hl=""
for host in `cat $PBS_NODEFILE` for host in `cat $PBS_NODEFILE`
do do
if [ "$hl" = "" ] if ["$hl" = "" ]
then hl="$host:$procs_per_host" then hl="$host:$procs_per_host"
else hl="${hl}:$host:$procs_per_host" else hl="${hl}:$host:$procs_per_host"
fi fi
......
...@@ -100,8 +100,8 @@ To run ANSYS Fluent in batch mode with user's config file you can utilize/modify ...@@ -100,8 +100,8 @@ To run ANSYS Fluent in batch mode with user's config file you can utilize/modify
cd $PBS_O_WORKDIR cd $PBS_O_WORKDIR
#We assume that if they didn’t specify arguments then they should use the #We assume that if they didn’t specify arguments then they should use the
#config file if [ "xx${input}${case}${mpp}${fluent_args}zz" = "xxzz" ]; then #config file if ["xx${input}${case}${mpp}${fluent_args}zz" = "xxzz" ]; then
if [ -f pbs_fluent.conf ]; then if [-f pbs_fluent.conf ]; then
. pbs_fluent.conf . pbs_fluent.conf
else else
printf "No command line arguments specified, " printf "No command line arguments specified, "
......
...@@ -39,7 +39,7 @@ procs_per_host=1 ...@@ -39,7 +39,7 @@ procs_per_host=1
hl="" hl=""
for host in `cat $PBS_NODEFILE` for host in `cat $PBS_NODEFILE`
do do
if [ "$hl" = "" ] if ["$hl" = "" ]
then hl="$host:$procs_per_host" then hl="$host:$procs_per_host"
else hl="${hl}:$host:$procs_per_host" else hl="${hl}:$host:$procs_per_host"
fi fi
......
...@@ -35,7 +35,7 @@ procs_per_host=1 ...@@ -35,7 +35,7 @@ procs_per_host=1
hl="" hl=""
for host in `cat $PBS_NODEFILE` for host in `cat $PBS_NODEFILE`
do do
if [ "$hl" = "" ] if ["$hl" = "" ]
then hl="$host:$procs_per_host" then hl="$host:$procs_per_host"
else hl="${hl}:$host:$procs_per_host" else hl="${hl}:$host:$procs_per_host"
fi fi
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
**[SVS FEM](http://www.svsfem.cz/)** as **[ANSYS Channel partner](http://www.ansys.com/)** for Czech Republic provided all ANSYS licenses for ANSELM cluster and supports of all ANSYS Products (Multiphysics, Mechanical, MAPDL, CFX, Fluent, Maxwell, LS-DYNA...) to IT staff and ANSYS users. If you are challenging to problem of ANSYS functionality contact please [hotline@svsfem.cz](mailto:hotline@svsfem.cz?subject=Ostrava%20-%20ANSELM) **[SVS FEM](http://www.svsfem.cz/)** as **[ANSYS Channel partner](http://www.ansys.com/)** for Czech Republic provided all ANSYS licenses for ANSELM cluster and supports of all ANSYS Products (Multiphysics, Mechanical, MAPDL, CFX, Fluent, Maxwell, LS-DYNA...) to IT staff and ANSYS users. If you are challenging to problem of ANSYS functionality contact please [hotline@svsfem.cz](mailto:hotline@svsfem.cz?subject=Ostrava%20-%20ANSELM)
Anselm provides as commercial as academic variants. Academic variants are distinguished by "**Academic...**" word in the name of license or by two letter preposition "**aa\_**" in the license feature name. Change of license is realized on command line respectively directly in user's pbs file (see individual products). [ More about licensing here](licensing/) Anselm provides as commercial as academic variants. Academic variants are distinguished by "**Academic...**" word in the name of license or by two letter preposition "**aa\_**" in the license feature name. Change of license is realized on command line respectively directly in user's pbs file (see individual products). [More about licensing here](licensing/)
To load the latest version of any ANSYS product (Mechanical, Fluent, CFX, MAPDL,...) load the module: To load the latest version of any ANSYS product (Mechanical, Fluent, CFX, MAPDL,...) load the module:
......
...@@ -28,7 +28,7 @@ Instead of [running your MPI program the usual way](../mpi/mpi/), use the the pe ...@@ -28,7 +28,7 @@ Instead of [running your MPI program the usual way](../mpi/mpi/), use the the pe
$ perf-report mpirun ./mympiprog.x $ perf-report mpirun ./mympiprog.x
``` ```
The mpi program will run as usual. The perf-report creates two additional files, in \*.txt and \*.html format, containing the performance report. Note that demanding MPI codes should be run within [ the queue system](../../resource-allocation-and-job-execution/job-submission-and-execution/). The mpi program will run as usual. The perf-report creates two additional files, in \*.txt and \*.html format, containing the performance report. Note that demanding MPI codes should be run within [the queue system](../../resource-allocation-and-job-execution/job-submission-and-execution/).
## Example ## Example
......
...@@ -258,7 +258,7 @@ or by setting environment variable ...@@ -258,7 +258,7 @@ or by setting environment variable
$ export MKL_MIC_ENABLE=1 $ export MKL_MIC_ENABLE=1
``` ```
To get more information about automatic offload please refer to "[Using Intel® MKL Automatic Offload on Intel ® Xeon Phi™ Coprocessors](http://software.intel.com/sites/default/files/11MIC42_How_to_Use_MKL_Automatic_Offload_0.pdf)" white paper or [ Intel MKL documentation](https://software.intel.com/en-us/articles/intel-math-kernel-library-documentation). To get more information about automatic offload please refer to "[Using Intel® MKL Automatic Offload on Intel ® Xeon Phi™ Coprocessors](http://software.intel.com/sites/default/files/11MIC42_How_to_Use_MKL_Automatic_Offload_0.pdf)" white paper or [Intel MKL documentation](https://software.intel.com/en-us/articles/intel-math-kernel-library-documentation).
### Automatic Offload Example ### Automatic Offload Example
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment