49%
02.06.2020
:40:04Z"
14 },
15 "entity": {
16 "host": "tired-duck-brash-civet",
17 "path": "",
18 "domain_guid": "fb6bd89f-2ed9-49d4-9ad1-97951a573135",
19 "space_guid": "d6
48%
25.03.2020
GVzLmlvL3NlcnZpY2VhY2NvdW50L3NlcnZpY2UtYWNjb3VudC51aWQiOiJiNDVhMDhjMi1kMzg1LTQxMmItOTUwNS02YmRmODdiNjRhN2EiLCJzdWIiOiJzeXN0ZW06c2VydmljZWFjY291bnQ6ZGVmYXVsdDp0ZXN0c2VydmljZWFjY291bnQifQ.SO9XwM3zgiW6sOfEaJx1P6
48%
05.12.2019
).
Figure 1: Flattening a 2D array in C or C++.
Listing 3
inspect.c
#include
**
int a[4][5] = { // array of 4 arrays of 5 ints each, a 4x5 matrix
{ 1, 2, 3
48%
30.11.2025
# Header for user-specific report
19 printf("%2s\t%4s\t%4s\tD=%2d\n", "N", "Xdat", "Xpdq", MAXDUMMIES);
20
21 foreach $users (sort {$a <=> $b} @vusers) {
22 pdq::Init($model);
23 $pdq::streams = pdq
48%
27.08.2014
was the random read and write test with small record sizes and a smaller total file size (a kind of random IOPS run):
./iozone -i 2 -w -r 4k -I -O -w -+n -s 4g -t 2 -+n > iozone_random_1.out
The total file size
48%
12.02.2014
B hald-addon-input
...
22.9 MiB + 4.0 MiB = 26.9 MiB plasma-desktop
26.0 MiB + 5.7 MiB = 31.7 MiB konsole (3)
28.3 MiB + 4.4 MiB = 32.7 MiB kwin
41.0 MiB + 2.0 MiB = 43.0 MiB Xorg
146.9
48%
30.11.2025
lxc.cgroup.devices.allow = c 1:9 rwm
25 lxc.cgroup.devices.allow = c 1:8 rwm
26 lxc.cgroup.devices.allow = c 136:* rwm
27 lxc.cgroup.devices.allow = c 5:2 rwm
28 # rtc
29 lxc.cgroup.devices.allow = c
48%
16.01.2013
$ starcluster start -s 1 foocluster -n ami-999d49f0
$ starcluster get foocluster /opt/sge6-fresh .
$ starcluster terminate foocluster
$ starcluster start -o -s 1 -i t1.micro -n ami-e2a0058b imagehost
48%
01.06.2024
simulations.
sudo apt install openmpi-bin openmpi-common openmpi-doc libopenmpi-dev
The code as listed runs 1 million iterations, which I can launch over two Xeon Broadwell cores,
mpiexec -n 2 mpi
48%
09.01.2019
of the loop, n
, is large enough, some processing hardware can greatly speed up the computation.
What happens if z(i)
depends on a previous value, as in the following:
do i = 2,n
z(i) = z(i-1)*2
enddo