24%
03.02.2024
-blocks Used Available Use% Mounted on
tmpfs 26377272 2512 26374760 1% /run
/dev/nvme0n1p2 490617784 142282252 323340052 31% /
tmpfs
24%
03.04.2019
parallel do
do i=1,N
a(i) = b(i) + c(i)
end do
!$omp end parallel do
#pragma omp parallel for
{
for (i=0; i < n; i++) {
a[i] = b[i] + c[i]
}
}
Once the code inside
24%
04.05.2021
:1 binary replacement for Red Hat Enterprise Linux and currently ships with GNOME 3.32, kernel 4.18.0-240.22.1.el8, SQLite 3.26, virt-what 1.18, samba 4.12.3, dnf 4.2, rpm 4.14, glibc 2.28, libgcc 8
24%
27.09.2021
. If you have a piece of software that is version 3.8.12, you might see version 4.0.1 start up as an updated image, which might not always be what you want.
If the software you use supports extensions
24%
05.02.2023
.eu/one-step-closer-exascale-eurohpc-ju-and-forschungszentrum-julich-sign-hosting-agreement-exascale-2022-12-14_en) between the European High Performance Computing Joint Undertaking (EuroHPC JU
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%
09.08.2015
release to the encryption toolkit to address a "certificate forgery" issue. The problem affects OpenSSL versions 1.0.2c, 1.0.2b, 1.0.1n, and 1.0.1o. According to the security advisory (CVE-2015
24%
17.02.2015
unsigned int flags = 0;
066
067 printf("deadline thread start %ld\n",
068 gettid());
069
070 attr.size = sizeof(attr);
071 attr.sched_flags = 0;
072 attr.sched_nice = 0;
073 attr
24%
13.02.2017
.g., Wireshark). Despite this failing, VLANs are considered safer than normal networks. In truth, a network is also based on a VLAN where all nodes on the network work with a VLAN ID of 0.
Multivendor VLANs
24%
04.11.2011
convolutionSum = 0.0f;
05
06 // Iterate over convolution kernel
07 for(size_t ky = 0; ky < kernel.height; ++ky)
08 {
09 for(size_t kx = 0; kx < kernel.width; ++kx)
10
11 {
12