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

version 0.45

parent 998c143e
No related branches found
No related tags found
4 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
Pipeline #
Převod html dokumentace do md formátu (version 0.4) - BETA
Převod html dokumentace do md formátu (version 0.45) - BETA
===========================================================
Výsledkem projektu by měl být skript pro stažení a převod stávající dokumentace na docs.it4i.cz do md formátu
......@@ -23,7 +23,7 @@ Pro svou práci si naklonujete Gitem repozitář do svého pracovního adresář
>**Změny v nové verzi**
> * oprava odkazu na obrázky a vylepšené filtrování
> * přehled o počtu souboru a stavu převodu
> * optimalizace, začlenění testovacích funkcí do hlavní větve programu
> * formátování tabulek - některé typy
### Funkce skriptu
......
......@@ -2,18 +2,47 @@
### DOWNLOAD AND CONVERT DOCUMENTATION
# autor: kru0052
# version: 0.4
# change: repair bugs and optimalizations
# bugs: bad formatting tables, bad links for other files, stayed a few html elements, formatting bugs...
# version: 0.45
# change: repair tables
# bugs: bad links for other files, stayed a few html elements, formatting bugs...
###
if [ "$1" = "-t" ]; then
# testing new function
echo "Testing..."
printf "\t\tformatting tables...\n"
cat ./test > ./test.md;
while read x ; do
arg1=`echo "$x" | cut -d"&" -f1 | sed 's:[]\[\^\$\.\*\/\"]:\\\\&:g'`;
arg2=`echo "$x" | cut -d"&" -f2 | sed 's:[]\[\^\$\.\*\/\"]:\\\\&:g'`;
sed -e 's/'"$arg1"'/'"$arg2"'/' ./test.md > ./test.tmp;
sed -e :a -e '/\\$/N; s/\\\n//; ta' ./test.tmp > ./test.md;
#cat ./test.tmp > ./test.md;
done < ./source/tab
fi
if [ "$1" = "-t1" ]; then
count=$(find . -name "*.html" -type f | wc -l)
if [ $count -eq 151 ]; then
echo "true - $count";
else
echo "false - $count";
exit;
fi
fi
if [ "$1" = "-w" ]; then
# download html pages
rm -rf docs.it4i.cz
wget -X pbspro-documentation,changelog,whats-new,portal_css,portal_javascripts,++resource++jquery-ui-themes,anselm-cluster-documentation/icon.jpg -R favicon.ico,pdf.png,logo.png,background.png,application.png,search_icon.png,png.png,sh.png,touch_icon.png,anselm-cluster-documentation/icon.jpg,*js,robots.txt,*xml,RSS,download_icon.png,pdf,*zip,*rar,@@*,anselm-cluster-documentation/icon.jpg.1 --mirror --convert-links --adjust-extension --page-requisites --no-parent https://docs.it4i.cz;
wget --directory-prefix=./docs.it4i.cz/ http://verif.cs.vsb.cz/aislinn/doc/report.png
......@@ -62,6 +91,13 @@ if [ "$1" = "-c" ]; then
DOWN=$((LAST-END+2))
sed '1,'"$((HEAD-1))"'d' "$i" | sed -n -e :a -e '1,'"$DOWN"'!{P;N;D;};N;ba' > "${i%.*}TMP.html"
#while read x ; do
# arg1=`echo "$x" | cut -d"&" -f1 | sed 's:[]\[\^\$\.\*\/\"]:\\\\&:g'`;
# arg2=`echo "$x" | cut -d"&" -f2 | sed 's:[]\[\^\$\.\*\/\"]:\\\\&:g'`;
# sed -e 's/'"$arg1"'/'"$arg2"'/' "${i%.*}TMP.html" > "${i%.*}.html";
#done < ./source/tabHTML
# converted .html to .md
printf "\t\t.html -> .md\n"
......@@ -70,7 +106,7 @@ if [ "$1" = "-c" ]; then
# second filtering html and css elements...
printf "\t\tsecond filtering html and css elements...\n"
sed -e 's/``` /```/' "${i%.*}.md" | sed -e 's/ //' | sed -e 's/<\/div>//g' | sed '/^<div/d' | sed -e 's/<\/span>//' | sed -e 's/^\*\*//' | sed -e 's/\\//g' | sed -e 's/^: //g' | sed -e 's/^Obsah//g' > "${i%.*}TMP.md";
sed -e 's/``` /```/' "${i%.*}.md" | sed -e 's/<\/div>//g' | sed '/^<div/d' | sed -e 's/<\/span>//' | sed -e 's/^\*\*//' | sed -e 's/\\//g' | sed -e 's/^: //g' | sed -e 's/^Obsah//g' > "${i%.*}TMP.md";
while read x ; do
arg1=`echo "$x" | cut -d"&" -f1 | sed 's:[]\[\^\$\.\*\/\"]:\\\\&:g'`;
arg2=`echo "$x" | cut -d"&" -f2 | sed 's:[]\[\^\$\.\*\/\"]:\\\\&:g'`;
......@@ -86,9 +122,19 @@ if [ "$1" = "-c" ]; then
arg2=`echo "$x" | cut -d"&" -f2 | sed 's:[]\[\^\$\.\*\/\"]:\\\\&:g'`;
sed -e 's/'"$arg1"'/'"$arg2"'/' "${i%.*}TMP.md" > "${i%.*}.md";
cat "${i%.*}.md" > "${i%.*}TMP.md";
cat -s "${i%.*}.md" > "${i%.*}TMP.md";
done < ./source/repairIMG
# repair tables
printf "\t\tformatting tables...\n"
#while read x ; do
# arg1=`echo "$x" | cut -d"&" -f1 | sed 's:[]\[\^\$\.\*\/\"]:\\\\&:g'`;
# arg2=`echo "$x" | cut -d"&" -f2 | sed 's:[]\[\^\$\.\*\/\"]:\\\\&:g'`;
# sed -e 's/'"$arg1"'/'"$arg2"'/' "${i%.*}TMP.md" > "${i%.*}.md";
# sed -e :a -e '/\\$/N; s/\\\n//; ta' "${i%.*}.md" > "${i%.*}TMP.md";
#done < ./source/tab
cat "${i%.*}TMP.md" > "${i%.*}.md";
# delete temporary files
......@@ -108,35 +154,50 @@ if [ "$1" = "-c" ]; then
### create new folder and move converted files
# create folder info and view all files and folder
mkdir info;
find ./docs.it4i.cz -name "*.png" -type f > ./info/list_image.txt;
find ./docs.it4i.cz -name "*.jpg" -type f >> ./info/list_image.txt;
find ./docs.it4i.cz -name "*.jpeg" -type f >> ./info/list_image.txt;
find ./docs.it4i.cz -name "*.md" -type f> ./info/list_md.txt;
find ./docs.it4i.cz -type d | sort > ./info/list_folder.txt
rm -rf ./converted
mkdir converted;
(while read i;
do
mkdir "./converted/$i";
done) < ./source/list_folder
# move md files to new folders
while read a b ; do
cp "$a" "./converted/$b";
done < <(paste ./info/list_md.txt ./source/list_md_mv)
echo "$(tput setaf 11)create folder info and file lists";
find ./docs.it4i.cz -name "*.png" -type f > ./info/list_image;
find ./docs.it4i.cz -name "*.jpg" -type f >> ./info/list_image;
find ./docs.it4i.cz -name "*.jpeg" -type f >> ./info/list_image;
find ./docs.it4i.cz -name "*.md" -type f> ./info/list_md;
find ./docs.it4i.cz -type d | sort > ./info/list_folder;
count=$(find . -name "*.md" -type f | wc -l)
if [ $count -eq 150 ]; then
rm -rf ./converted
mkdir converted;
(while read i;
do
mkdir "./converted/$i";
done) < ./source/list_folder
# move md files to new folders
echo "$(tput setaf 11)moved md files";
while read a b ; do
mv "$a" "./converted/$b";
done < <(paste ./info/list_md ./source/list_md_mv)
# copy jpg and jpeg to new folders
while read a b ; do
cp "$a" "./converted/$b";
done < <(paste ./info/list_image.txt ./source/list_image_mv.txt)
cp ./docs.it4i.cz/salomon/salomon ./converted/docs.it4i.cz/salomon/salomon
cp ./docs.it4i.cz/salomon/salomon-2 ./converted/docs.it4i.cz/salomon/salomon-2
cp ./converted/docs.it4i.cz/salomon/resource-allocation-and-job-execution/fairshare_formula.png ./converted/docs.it4i.cz/anselm-cluster-documentation/resource-allocation-and-job-execution/fairshare_formula.png
cp ./converted/docs.it4i.cz/salomon/resource-allocation-and-job-execution/job_sort_formula.png ./converted/docs.it4i.cz/anselm-cluster-documentation/resource-allocation-and-job-execution/job_sort_formula.png
cp ./converted/docs.it4i.cz/salomon/software/debuggers/vtune-amplifier.png ./converted/docs.it4i.cz/anselm-cluster-documentation/software/debuggers/vtune-amplifier.png
cp ./converted/docs.it4i.cz/salomon/software/debuggers/Snmekobrazovky20160708v12.33.35.png ./converted/docs.it4i.cz/anselm-cluster-documentation/software/debuggers/Snmekobrazovky20160708v12.33.35.png
cp ./docs.it4i.cz/virtualization-job-workflow ./converted/docs.it4i.cz/anselm-cluster-documentation/software/
# copy jpg and jpeg to new folders
echo "$(tput setaf 11)copy image files";
while read a b ; do
cp "$a" "./converted/$b";
done < <(paste ./info/list_image ./source/list_image_mv)
cp ./docs.it4i.cz/salomon/salomon ./converted/docs.it4i.cz/salomon/salomon
cp ./docs.it4i.cz/salomon/salomon-2 ./converted/docs.it4i.cz/salomon/salomon-2
cp ./converted/docs.it4i.cz/salomon/resource-allocation-and-job-execution/fairshare_formula.png ./converted/docs.it4i.cz/anselm-cluster-documentation/resource-allocation-and-job-execution/fairshare_formula.png
cp ./converted/docs.it4i.cz/salomon/resource-allocation-and-job-execution/job_sort_formula.png ./converted/docs.it4i.cz/anselm-cluster-documentation/resource-allocation-and-job-execution/job_sort_formula.png
cp ./converted/docs.it4i.cz/salomon/software/debuggers/vtune-amplifier.png ./converted/docs.it4i.cz/anselm-cluster-documentation/software/debuggers/vtune-amplifier.png
cp ./converted/docs.it4i.cz/salomon/software/debuggers/Snmekobrazovky20160708v12.33.35.png ./converted/docs.it4i.cz/anselm-cluster-documentation/software/debuggers/Snmekobrazovky20160708v12.33.35.png
cp ./docs.it4i.cz/virtualization-job-workflow ./converted/docs.it4i.cz/anselm-cluster-documentation/software/
find ./converted -name "*.png" -type f > ./info/list_image_converted;
find ./converted -name "*.jpg" -type f >> ./info/list_image_converted;
find ./converted -name "*.jpeg" -type f >> ./info/list_image_converted;
find ./converted -name "*.md" -type f> ./info/list_md_converted;
find ./converted -type d | sort > ./info/list_folder_converted;
echo "$(tput setaf 11)COMPLETED...$(tput setaf 15)";
else
echo "$(tput setaf 9)Can not create a folder converted, because the number of MD files disagrees. The converted files remain in the folder docs.it4i.cz !!!!...$(tput setaf 15)";
fi
fi
......@@ -33,4 +33,3 @@
./docs.it4i.cz/salomon/software/mpi-1
./docs.it4i.cz/salomon/software/numerical-languages
./docs.it4i.cz/salomon/storage
./docs.it4i.cz/salomon/uv-2000
......@@ -67,7 +67,7 @@
./docs.it4i.cz/anselm-cluster-documentation/quality1.png
./docs.it4i.cz/anselm-cluster-documentation/software/omics-master-1/fig1.png
./docs.it4i.cz/salomon/software/debuggers/report.png
./docs.it4i.cz/get-started-with-it4innovations/accessing-the-clusters/graphical-user-interface/vpnuiV.png
./docs.it4i.cz/get-started-with-it4innovations/accessing-the-clusters/shell-access-and-data-transfer/vpnuiV.png
./docs.it4i.cz/anselm-cluster-documentation/software/omics-master-1/fig4.png
./docs.it4i.cz/salomon/software/ansys/Fluent_Licence_2.jpg
./docs.it4i.cz/salomon/software/ansys/Fluent_Licence_4.jpg
......
./docs.it4i.cz/get-started-with-it4innovations/introduction.md
./docs.it4i.cz/get-started-with-it4innovations/accessing-the-clusters/introduction.md
./docs.it4i.cz/get-started-with-it4innovations/accessing-the-clusters/graphical-user-interface/vnc.md
./docs.it4i.cz/get-started-with-it4innovations/accessing-the-clusters/graphical-user-interface/cygwin-and-x11-forwarding.md
......@@ -71,7 +70,6 @@
./docs.it4i.cz/salomon/storage/cesnet-data-storage.md
./docs.it4i.cz/salomon/storage/storage.md
./docs.it4i.cz/salomon/accessing-the-cluster.md
./docs.it4i.cz/salomon/index.md
./docs.it4i.cz/salomon/hardware-overview-1/hardware-overview.md
./docs.it4i.cz/anselm-cluster-documentation/introduction.md
./docs.it4i.cz/anselm-cluster-documentation/hardware-overview.md
......
......@@ -98,3 +98,4 @@
./docs.it4i.cz/sitemap.html
./docs.it4i.cz/whats-new.html
./docs.it4i.cz/salomon/index.html
./docs.it4i.cz/get-started-with-it4innovations/introduction.html
......@@ -53,7 +53,7 @@ Preferences](gdmscreensaver.png/@@images/44048cfa-e854-4cb4-902b-c173821c2db1.pn
[![](https://docs.it4i.cz/get-started-with-it4innovations/accessing-the-clusters/shell-access-and-data-transfer/putty/PuTTY_save_Salomon.png/@@images/0eeeb971-b295-4780-88e7-7557da05a1cb.png)](PuTTY_save_Salomon.png)&![](PuTTY_save_Salomon.png)
[![](https://docs.it4i.cz/get-started-with-it4innovations/accessing-the-clusters/shell-access-and-data-transfer/putty/PuTTY_open_Salomon.png/@@images/741d3e56-d9b3-48fd-838f-90ad6c1bf8eb.png)](PuTTY_open_Salomon.png)&![](PuTTY_open_Salomon.png)
[![PuttyKeygenerator](https://docs.it4i.cz/get-started-with-it4innovations/accessing-the-clusters/shell-access-and-data-transfer/putty/PuttyKeygeneratorV.png/@@images/22954eec-6127-4d42-b159-9bebacb3223d.png "PuttyKeygenerator")](PuttyKeygeneratorV.png)&![](PuttyKeygeneratorV.png)
[![PuttyKeygenerator_001](https://docs.it4i.cz/get-started-with-it4innovations/accessing-the-clusters/shell-access-and-data-transfer/putty/PuttyKeygenerator_001V.png/@@images/f7c1889f-605f-4c5c-8904-d962ec4531a2.png "PuttyKeygenerator_001")](PuttyKeygenerator_001V.png)&![](PuttyKeygenerator_001.png)
[![PuttyKeygenerator_001](https://docs.it4i.cz/get-started-with-it4innovations/accessing-the-clusters/shell-access-and-data-transfer/putty/PuttyKeygenerator_001V.png/@@images/f7c1889f-605f-4c5c-8904-d962ec4531a2.png "PuttyKeygenerator_001")](PuttyKeygenerator_001V.png)&![](PuttyKeygenerator_001V.png)
[![PuttyKeygenerator_002](https://docs.it4i.cz/get-started-with-it4innovations/accessing-the-clusters/shell-access-and-data-transfer/putty/PuttyKeygenerator_002V.png/@@images/13b88922-8c1d-47b2-b3e6-043c18b11d86.png "PuttyKeygenerator_002")](PuttyKeygenerator_002V.png)&![](PuttyKeygenerator_002V.png)
[![PuttyKeygenerator_003](https://docs.it4i.cz/get-started-with-it4innovations/accessing-the-clusters/shell-access-and-data-transfer/putty/20150312_143443.png/@@images/29ff0f89-8203-4777-9a00-c068d3188fd0.png "PuttyKeygenerator_003")](20150312_143443.png)&![](PuttyKeygenerator_003.png)
[![PuttyKeygenerator_004](https://docs.it4i.cz/get-started-with-it4innovations/accessing-the-clusters/shell-access-and-data-transfer/putty/PuttyKeygenerator_004V.png/@@images/8ef00e6b-0155-4dc2-82e6-7141a15f282c.png "PuttyKeygenerator_004")](PuttyKeygenerator_004V.png)&![](PuttyKeygenerator_004.png)
......@@ -106,3 +106,9 @@ Connect](Snmekobrazovky20160211v14.27.45.png/@@images/3550e4ae-2eab-4571-8387-11
![Vampir screenshot](Snmekobrazovky20160708v12.33.35.png/@@images/42d90ce5-8468-4edb-94bb-4009853d9f65.png "Vampir screenshot")&![](Snmekobrazovky20160708v12.33.35..png)
![Intel Trace&
Analyzer](Snmekobrazovky20151204v15.35.12.png/@@images/fb3b3ac2-a88f-4e55-a25e-23f1da2200cb.png "Intel Trace Analyzer")&![](Snmekobrazovky20151204v15.35.12.png)
![The Authorization chain for access and utilization of computational&
resources on&
Anselm](../../anselm-cluster-documentation/Authorization_chain.png "Authorization chain")&![](Authorization_chain.png)
screensaver](https://docs.it4i.cz/get-started-with-it4innovations/accessing-the-clusters/graphical-user-interface/vnc/gdmdisablescreensaver.png/@@images/8a4758d9-3027-4ce4-9a90-2d5e88197451.png "Disable lock screen and screensaver")](gdmdisablescreensaver.png)&![](gdmdisablescreensaver.png)
[![gnome-terminal.png](https://docs.it4i.cz/get-started-with-it4innovations/accessing-the-clusters/graphical-user-interface/vnc/gnome-terminal.png/@@images/b44f5d8c-156d-4041-9bb0-973996413834.png "gnome-terminal.png")](gnome-terminal.png)&![](gnome-terminal.png)
[![gnome-compute-nodes-over-vnc.png](https://docs.it4i.cz/get-started-with-it4innovations/accessing-the-clusters/graphical-user-interface/vnc/gnome-compute-nodes-over-vnc.png/@@images/d4c9b6b6-6e2c-48c0-84dd-26d291517355.png "gnome-compute-nodes-over-vnc.png")](gnome-compute-nodes-over-vnc.png)&![](gnome-compute-nodes-over-vnc.png)
......@@ -146,3 +146,21 @@ Systems biology**&**Systems biology**
Workaround:**&**Workaround:**
-g** : Generates extra debugging information usable by GDB. -g3&-g** : Generates extra debugging information usable by GDB. -g3**
-O0** : Suppress all optimizations.&-O0** : Suppress all optimizations.**
class="external-link">&
class="link-external">&
class="WYSIWYG_LINK">&
class="wide-view-wrapper">&
class="listitem">&
class="emphasis">&
<p><a href="x-window-system/cygwin-and-x11-forwarding.html" If no able to forward X11 using PuTTY to CygwinX</a>&[If no able to forward X11 using PuTTY to CygwinX](x-window-system/cygwin-and-x11-forwarding.html)
<p><a href="http://x.cygwin.com/" Install Cygwin</a>&[Install Cygwin](http://x.cygwin.com/)
class="visualHighlight">&
{.spip_in&
.external&
nodes.****&nodes.
###Compute Nodes Without Accelerator**&###Compute Nodes Without Accelerator
###Compute Nodes With MIC Accelerator**&###Compute Nodes With MIC Accelerator
###Compute Nodes With GPU Accelerator**&###Compute Nodes With GPU Accelerator
###Fat Compute Nodes**&###Fat Compute Nodes
**Figure Anselm bullx B510 servers****&**Figure Anselm bullx B510 servers**
### Compute Nodes Summary********&### Compute Nodes Summary
<table>&\\
</th>&\\
</td>&\\
<td align="left">& |
</tr>& |
<tr class="odd">&\\
<tr class="even">&\\
</tbody>&\\
</table>&\\
<p> class="s1">&
</p>&\\
<colgroup>&\\
<col width="50%" />&\\
</colgroup>&\\
<thead>&\\
<tr class="header">&\\
<tbody>&\\
<th align="left">& |
</thead>& | --- | --- |
<th align="left">& |
<br />&\\
</p>&\\
)\&)
.\&.
<p>&
compute nodes number of workers start-up time[s]&|compute nodes|number of workers|start-up time[s]|
--------------- ------------------- --------------------&|---|---|---|
16 384 831&|16|384|831|
8 192 807&|8|192|807|
4 96 483&|4|96|483|
2 48 16&|2|48|16|
Node type Count Range Memory Cores [Access](resource-allocation-and-job-execution/resources-allocation-policy.html)&|Node type|Count|Range|Memory|Cores|[Access](resource-allocation-and-job-execution/resources-allocation-policy.html)|
---------------------------- ------- --------------- -------- ------------- --------------------------------------------------------------------------------------------------&|---|---|---|---|---|---|
Nodes without accelerator 180 cn[1-180] 64GB 16 @ 2.4Ghz qexp, qprod, qlong, qfree&|Nodes without accelerator|180|cn[1-180]|64GB|16 @ 2.4Ghz|qexp, qprod, qlong, qfree|
Nodes with GPU accelerator 23 cn[181-203] 96GB 16 @ 2.3Ghz qgpu, qprod&|Nodes with GPU accelerator|23|cn[181-203]|96GB|16 @ 2.3Ghz|qgpu, qprod|
Nodes with MIC accelerator 4 cn[204-207] 96GB 16 @ 2.3GHz qmic, qprod&|Nodes with MIC accelerator|4|cn[204-207]|96GB|16 @ 2.3GHz|qmic, qprod|
Fat compute nodes 2 cn[208-209] 512GB 16 @ 2.4GHz qfat, qprod&|Fat compute nodes|2|cn[208-209]|512GB|16 @ 2.4GHz|qfat, qprod|
Node Processor Memory Accelerator&|Node|Processor|Memory|Accelerator|
------------------ --------------------------------------- -------- ----------------------&|---|---|---|---|
w/o accelerator 2x Intel Sandy Bridge E5-2665, 2.4GHz 64GB -&|w/o accelerator|2x Intel Sandy Bridge E5-2665, 2.4GHz|64GB|-|
GPU accelerated 2x Intel Sandy Bridge E5-2470, 2.3GHz 96GB NVIDIA Kepler K20&|GPU accelerated|2x Intel Sandy Bridge E5-2470, 2.3GHz|96GB|NVIDIA Kepler K20|
MIC accelerated 2x Intel Sandy Bridge E5-2470, 2.3GHz 96GB Intel Xeon Phi P5110&|MIC accelerated|2x Intel Sandy Bridge E5-2470, 2.3GHz|96GB|Intel Xeon Phi P5110|
Fat compute node 2x Intel Sandy Bridge E5-2665, 2.4GHz 512GB -&|Fat compute node|2x Intel Sandy Bridge E5-2665, 2.4GHz|512GB|-|
Login address Port Protocol Login node&|Login address|Port|Protocol|Login node|
------------------------ ------ ---------- -----------------------------------------&|---|---|---|---|
salomon.it4i.cz 22 ssh round-robin DNS record for login[1-4]&|salomon.it4i.cz|22|ssh|round-robin DNS record for login[1-4]|
login1.salomon.it4i.cz 22 ssh login1&|login1.salomon.it4i.cz|22|ssh|login1|
login2.salomon.it4i.cz 22 ssh login2&|login1.salomon.it4i.cz|22|ssh|login1|
login3.salomon.it4i.cz 22 ssh login3&|login1.salomon.it4i.cz|22|ssh|login1|
login4.salomon.it4i.cz 22 ssh login4&|login1.salomon.it4i.cz|22|ssh|login1|
Toolchain Module(s)&|Toolchain|Module(s)|
-------------------- ------------------------------------------------&|---|----|
GCC GCC&|GCC|GCC|
ictce icc, ifort, imkl, impi&|ictce|icc, ifort, imkl, impi|
intel GCC, icc, ifort, imkl, impi&|intel|GCC, icc, ifort, imkl, impi|
gompi GCC, OpenMPI&|gompi|GCC, OpenMPI|
goolf BLACS, FFTW, GCC, OpenBLAS, OpenMPI, ScaLAPACK&|goolf|BLACS, FFTW, GCC, OpenBLAS, OpenMPI, ScaLAPACK|
>iompi OpenMPI, icc, ifort&|iompi|OpenMPI, icc, ifort|
iccifort icc, ifort&|iccifort|icc, ifort|
<table class="listing">&<table class="plain">
<tr class="odd">&<tr>
<tr class="even">&<tr>
<table class="plain" id="big-picture-of-cluster">&<table class="plain">
<td title="Login nodes">&<td>
<table class="filled">&<table class="plain">
<td title="Compute nodes">&<td>
<table class="filled" id="blade-chassis">&<table class="plain">
<td title="Compute nodes">&<td>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment