13%
30.11.2020
):
11
12 s = 0.0
13 s += h * f(a)
14 for i in range(1, n):
15 s += 2.0 * h * f(a + i*h)
16 # end for
17 s += h * f(b)
18 return (s/2.)
19 # end def
20
21
22 # Main section
23 comm = MPI
13%
15.12.2016
are over i
= 2,n
− 1 and j
= 2,n
−1. Here is how you can write the iteration over the domain using array notation:
a(2:n-1,2:n-1) = 0.25 * &
(a(1:n-2,2:n) + a(3:n,2:n) + a(2:n,1:n-2) + a(2:n,3:n
13%
26.02.2014
reqs merged: 3.76/s Write reqs completed: 2.12/s
Read BW: 0.01 MB/s Write BW: 0.02 MB/s
Avg sector size issued 25.28 Avg
13%
21.08.2012
-served directory). For the first compute node, n0001
, the logfile will be called n0001.log
.
Watch out for a few gotchas when writing logs to the NFS server. Some of these problems occur because, by default, SL 6
13%
07.11.2013
Tuesday, November 19, 2013
11 AM-12 PM
“Distributed Symmetric Multiprocessing – Shattering Affordability and Scalability barriers to large shared memory HPC,” Richard Anderson, CEO
13%
04.08.2020
-slim[build]: info=image id=sha256:231d40e811cd970168fb0c4770f2161aa30b9ba6fe8e68527504df69643aa145 size.bytes=126323486 size.human=126 MB
docker-slim[build]: info=image.stack index=0 name='nginx:latest' id='sha256
13%
03.02.2022
,32
1,33
2,34
3,35
4,36
5,37
6,38
7,39
8,40
9,41
10,42
11,43
12,44
13,45
14,46
15,47
16,48
17,49
18,50
19,51
20,52
21,53
22,54
23,55
24,56
25,57
26,58
27,59
28,60
29,61
30,62
31,63
The lstopo tool
13%
18.07.2012
.own
lib/atlas/3.8.4 mpi/mpich2/1.5b1-open64-5.0
module-cvs mpi/openmpi/1.6-gcc-4.4.6
[laytonjb@n0001 ~]$ module load compilers/open64/5.0
[laytonjb@n0001 ~]$ module list
13%
17.06.2017
! Y equals 38
12
13 ! Dynamic memory blocks
14 N = 1000
15 ALLOCATE( PTR2, PTRA(N) )
16 ! Do some computing
17 DEALLOCATE(PTR2, PTRA)
18
19 END PROGRAM PTR_TEST1
Listing 7
13%
14.09.2021
$(find /sys/devices/system/cpu -regex ".*cpu[0-9]+/topology/thread_siblings_list") | sort -n | uniq
0,32
1,33
2,34
3,35
4,36
5,37
6,38
7,39
8,40
9,41
10,42
11,43
12,44
13,45
14,46
15,47
16,48
17,49
18,50
19,51
20,52
21,53
22,54
23,55
24,56
25