24%
05.02.2019
but independently of one another (Figure 2).
Table 3
Gang Execution
Fortran
C
!$acc parallel do i=1,n ! do something enddo!$acc end parallel
pragma acc parallel{ for (int i=0; i
24%
01.06.2024
container, create a directory and mount the root filesystem (run lsblk to verify the host filesystem; in this case, nvme0n1p1):
mkdir /mnt/host_root
mount /dev/nvme0n1p1 /mnt/host_root
Now if you change
24%
22.08.2017
/NUM_THREADS
ITHREAD = OMP_GET_THREAD_NUM()
IF ( ITHREAD == 0 ) THEN
PRINT *, "num_threads = ", NUM_THREADS
PRINT *, "n = ", N
ENDIF
! ----------------------------------
! Find my own starting index
24%
25.05.2012
it to become a Best Effort
program with the top priority available to it:
# ionice -c 2 -n 0 apache2
Back to iotop
There’s also some useful interactive commands with iotop.You can move the cursor arrows
24%
28.11.2011
or write network traffic information to a file. A basic capture uses the syntax
tcpdump -n -i -s
where -n
means tcpdump should not resolve IP addresses to domain names or port
24%
03.07.2013
speedup, n
is the number of processors, and p
is the parallel fraction, or the fraction of the application that is parallelizable (0 to 1).
In an absolutely perfect world, the parallelizable fraction
24%
04.10.2018
[ec2-user@ip-172-31-20-189 ~]$ consul members
Node Address Status Type Build Protocol DC Segment
ip-172-31-16-22 172.31.16.22:8301 alive server 1.2.0 2
24%
17.02.2015
ip addr show
which lists the interfaces recognized by the system. In my case, the Ethernet interface was identified as enp0s3. Next, you can edit the network configuration file for the interface with
24%
04.04.2023
.
If the edgeLinux partitioner does not give you a suggestion for partitioning the system disk, proceed as follows:
Create a 1024MB partition for /boot and a 20GB partition for /. Leave the remaining space
24%
30.01.2020
its execution in the real world (real), as well as how much CPU time was allocated in user and kernel (sys) modes:
$ time sleep 1
real 0m1.004s
user 0m0.002s
sys 0m0.001s
What not everyone knows