30%
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
30%
03.02.2022
command, except it lists all of the cores at once.
Listing 4
Real or SMT? Method 2
$ cat $(find /sys/devices/system/cpu -regex ".*cpu[0-9]+/topology/thread_siblings_list") | sort -n | uniq
0
30%
09.04.2019
for this setting's trade-off.
Listing 2
Disabling auto_da_alloc
ubuntu@aws grep ext4 < /proc/mounts
/dev/nvme1n1p1 / ext4 rw,relatime,discard,data=ordered 0 0
ubuntu@aws sudo mount -o remount
30%
19.11.2019
7 1 56012 loop1
7 2 90604 loop2
259 0 244198584 nvme0n1
8 0 488386584 sda
8 1 1024 sda1
8 2 488383488 sda2
8
30%
30.01.2020
91264 loop0
7 1 56012 loop1
7 2 90604 loop2
259 0 244198584 nvme0n1
8 0 488386584 sda
8 1 1024 sda1
8 2 488383488 sda2
8
30%
09.06.2018
to the network.
Depending on your choice of distribution, different SMB versions are available. Starting with Samba v4.2, the highest version of the SMB protocol available is 3.0. On the Windows side
30%
01.08.2012
mpi/mpich2/1.5b1-open64-5.0 modulefile
#%Module1.0#####################################################################
##
## modules mpi/mpich2/1.5b1-open64-5.0
##
## modulefiles/mpi/mpich2/1.5b1
30%
05.08.2024
known as row-major and column-major.
Listing 2
column.go
01 package main
02
03 func main() {
04
05 const size = 10
06
07 var array = [size][size]int {{0},{0},}
08
09 for i := 0
30%
17.06.2017
and a gateway, you would invoke the following command:
# nmcli con add type ethernet con-name office ifname enp0s25 ip4 192.168.0.111 gw4 192.168.0.1
Connection 'office' (e2abff10-6085-4be5-b327-820379b5e527
30%
04.08.2020
->tv_nsec) * 1E-9;
24 }
25
26 int main(int argc, char* argv[argc+1]) {
27 if (argc < 2) {
28 fprintf(stderr, "Usage: %s NNN, NNN iterations\n",
29 argv[0]);
30 return EXIT_FAILURE;
31 }
32