55%
27.08.2014
was the sequential write test using 1MB record sizes:
./iozone -i 0 -c -e -w -r 1024k -s 32g -t 2 -+n > iozone_write_1.out
To gather the block statistics, I ran ioprof in a different terminal window before I ran
55%
01.08.2012
: 288 M
Total download size: 4.4 M
Installed size: 297 M
Is this ok [y/N]: y
Downloading Packages:
(1/2): glibc-2.12-1.47.el6_2.9.i686.rpm
54%
21.08.2012
,physmem=2956668kb,availmem=2833120kb,totmem=2956668kb,idletime=107,nusers=0,nsessions=0,uname=Linux n0001 2.6.32-220.el6.x86_64 #1 SMP Sat Dec 10 17:04:11 CST 2011 x86_64,opsys=linux
mom
54%
12.05.2020
TAG IMAGE ID CREATED SIZE
cuda 10.1-base-ubuntu19.04-octave b01ee7a9eb2d 47 seconds ago 873MB
nvidia/cuda 10.1-base-ubuntu18.04 3b55548ae91f 4 months ago 106MB
hello
54%
12.03.2013
is shown in Listing 1.
Listing 1: Sample nfsiostat Output
Linux 2.6.18-308.16.1.el5.centos.plus (home8) 02/10/2013 _i686_ (1 CPU)
02/10/2013 03:38:48 PM
Filesystem: rMB_nor/s wMB
54%
25.03.2021
-machine)
UUID : 833033c5:cd9b78de:992202ee:cb1bf77f
Events : 4
Number Major Minor RaidDevice State
0 259 2 0 active sync /dev/nvme0n1p1
1 8
54%
07.11.2023
.82 TiB
Allocatable NO
PE Size 0
Total PE 0
Free PE 0
Allocated PE 0
PV UUID pHZ105-nDrN-V1E2-nGvI-1wyc-dqLC-TlXB58
54%
12.11.2020
f(x):
return x*x
# end def
def trapezoidal(a, b, n, h):
s = 0.0
s += h * f(a)
for i in range(1, n):
s += 2.0 * h * f(a + i*h)
# end for
s += h * f(b)
return (s/2.)
# end def
# Main
54%
09.12.2021
of threads, use:
$ plzip -v -9 -n 32 package-list.txt
package-list.txt: 2.640:1, 37.88% ratio, 62.12% saved, 11626 in, 4404 out.
The -n 32
option tells plzip
to use 32 threads to perform the compression
54%
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