Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Michael Krause
tardis-doc
Commits
02106f44
Commit
02106f44
authored
Feb 16, 2017
by
Michael Krause
🎉
Browse files
Merge branch 'master' of gitlab.mpib-berlin.mpg.de:lip-support/tardis-doc
parents
277bef1d
87034b99
Changes
6
Hide whitespace changes
Inline
Side-by-side
.pages.sh
0 → 100755
View file @
02106f44
#!/bin/bash
set
-e
SRC
=
$1
DST
=
$2
cd
$1
make html
cd
-
mkdir
-p
$2
cp
-r
$1
/_build/html/.
$2
exit
0
introduction/index.rst
View file @
02106f44
...
@@ -19,11 +19,11 @@ Tardis
...
@@ -19,11 +19,11 @@ Tardis
:width: 60%
:width: 60%
Some technical facts:
Some technical facts:
+ **
608
** Intel® Xeon® CPU E5-2670 CPU cores inside
3
2 Dell m6
2
0 blade servers
+ **
712
** Intel® Xeon® CPU E5-2670 CPU cores
(no HT)
inside
4
2 Dell m6
x
0 blade servers
+ **R**:sub:`max` =
5.1
TFlops, **R**:sub:`peak` = 1
2.6
TFlops
+ **R**:sub:`max` =
9.9
TFlops, **R**:sub:`peak` = 1
4.8
TFlops
+ **
3.2
TB** total amount of memory
+ **
6.4
TB** total amount of memory
+ **
256 GB** RAM on 6 of those nodes
+ **
32TB** of attached NFS storage
+ **
32
TB**
of attached NFS
storage
+ **
4.1
TB**
experimental glusterfs
storage
+ simple 2-level fat tree network with a theoretical bisection bandwidth of **40GB/s**
+ simple 2-level fat tree network with a theoretical bisection bandwidth of **40GB/s**
...
...
introduction/login.rst
View file @
02106f44
...
@@ -48,7 +48,7 @@ in Nautilus:
...
@@ -48,7 +48,7 @@ in Nautilus:
Open the following URL in your file manager (CTRL-L) ::
Open the following URL in your file manager (CTRL-L) ::
ssh://
<
YOUR_USERNAME
>
@tardis.mpib-berlin.mpg.de/home/mpib/
``
ssh://YOUR_USERNAME@tardis.mpib-berlin.mpg.de/home/mpib/
Mac OSX
Mac OSX
^^^^^^^
^^^^^^^
...
...
make
View file @
02106f44
...
@@ -14,3 +14,4 @@ while true ; do
...
@@ -14,3 +14,4 @@ while true ; do
WATCHSOURCE
=
"**/*.rst *.rst"
WATCHSOURCE
=
"**/*.rst *.rst"
$MAKEFUNC
$MAKEFUNC
done
done
software/fsl.rst
View file @
02106f44
FSL
FSL
===
===
We are automatically following the FSL 5 release history of `Neurodebian <http://neuro.debian.net>`_.
To use FSL in your jobs, activate it like this:
.. code-block:: bash
source /etc/fsl/5.0/fsl.sh
Afterwards the :file:`PATH` variable should be set correctly.
FIX
FIX
---
---
We have set up a running version of [FSL
We have set up a running version of `FSL Fix <http://fsl.fmrib.ox.ac.uk/fsl/fslwiki/FIX>`_.
Fix](http://fsl.fmrib.ox.ac.uk/fsl/fslwiki/FIX). Currently it is not using
Currently it is not using FSL's internal qsub so it only makes sense to
FSL's internal qsub so it only makes sense to parallelize over a number of
parallelize over a number of subjects. Example:
subjects. Example:
.. code-block:: bash
.. code-block:: bash
...
...
software/r.rst
View file @
02106f44
...
@@ -105,8 +105,23 @@ Timings:
...
@@ -105,8 +105,23 @@ Timings:
user system elapsed
user system elapsed
107.442 0.052 7.20
107.442 0.052 7.20
Alternatively you can use `%dopar%` and `foreach`:
If you want to unroll the vector operation of the whole cluster, have a look at
.. code-block:: r
library(doMC)
library(gmp)
cores <- Sys.getenv("PBS_NUM_PPN")
cores <- if (cores == '') 1 else as.numeric(cores)
registerDoMC(cores)
foreach(i=seq(1,16)) %dopar% {
factorize(matrix(as.bigz(2**521)-1))
}
If you want to unroll the vector operation to the whole cluster, have a look at
the `batchjobs`_ package.
the `batchjobs`_ package.
.. _batchjobs: https://cran.r-project.org/web/packages/BatchJobs/index.html
.. _batchjobs: https://cran.r-project.org/web/packages/BatchJobs/index.html
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment