26%
07.10.2014
.0 MB 2014-03-01 10:15 36467d 1
04 three.img 0 4.0 MB 0.0 MB 0.0 MB 2014-03-01 10:16 4e5a1c 3
05 two.img 0 4.0 MB 0.0 MB 0.0 MB 2014-03-01 10:15 a27d79 2
06 quark
25%
21.08.2012
with the compute node:
[root@test1 ~]# pbsnodes -a
n0001
state = free
np = 3
ntype = cluster
status = rectime=1343594239,varattr=,jobs=,state=free,netload=118255091,gres=,loadave=0.02,ncpus=3
25%
06.10.2019
://creativecommons.org/licenses/by-sa/3.0/
Splint: http://splint.org
Hoare, C.A.R. An axiomatic basis for computer programming. Communications of the ACM
, 1969;12(10):576-583, https://web.archive.org/web/20160304013345/http
25%
22.05.2012
9.3 k
dhclient x86_64 12:4.1.1-25.P1.el6_2.1 sl-security 315 k
e2fsprogs x86
25%
02.08.2021
SGEMM
for N = [2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192]
A = single( rand(N,N) );
B = single( rand(N,N) );
start = clock();
C = A*B;
elapsedTime = etime(clock(), start
25%
13.04.2023
Interactive HPC applications written in languages such as Python play a very important part today in high-performance computing. We look at how to run Python and Jupyter notebooks on a Warewulf 4 ... of packages in the file req.txt
in the home directory of the anaconda
user that can be used to create the shared_env
environment:
$ /opt/apps/anaconda3/bin/conda create -n shared_env --file ./req
25%
12.09.2013
approx. US$ 600
approx. US$ 335
CPU
Via Eden X2/1GHz
Via Eden X2/1GHz
AMD G-T44R/1.2GHz
AMD G-T56N/1.6GHz
Marvell ARMADA PXA 510 v7.1
Chipset
25%
17.06.2017
of the array), has to be specified. The following are simple examples of a declaration
INTEGER, TARGET :: a(3), b(6), c(9)INTEGER, DIMENSION(:),POINTER :: pt2
and multidimensional arrays:
INTEGER, POINTER
25%
29.09.2020
(abridged)
$ docker build -t dockly .
Sending build context to Docker daemon 16.52MB
Step 1/9 : FROM node:8-alpine
8-alpine: Pulling from library/node
e6b0cf9c0882: Pull complete
93f9cf0467ca: Pull
25%
07.11.2011
OpenMP brings the power of multiprocessing to your C, C++, and Fortran programs.
... #pragma omp parallel for shared (sum) private (i)
12 for ( i=0; i < 1000000; i++) {
13 #pragma omp critical (sum_total)
14 sum = sum + a[i];
15 }
16 printf("sum=%lf\n",sum);
17 ...
OpenMP brings the power of multiprocessing to your C, C++, and Fortran programs.