16%
13.04.2023
own package; therefore, according to the module hierarchy discussed in a past Warewulf article, it should go into /opt/modulefiles/Core
. The version of Anaconda I installed was 22.9.0, which is what I
16%
17.06.2017
integer :: allocate_status
08 !
09 n = 10
10 allocate( array(n, n), stat = allocate_status )
11 if (allocate_status /= 0) stop "Could not allocate array"
12 !
13 subarray => array(3:7,3:7)
14
16%
12.05.2020
):
root@c31656cbd380:/# apt-get update
Get:1 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB]
...
Fetched 18.0 MB in 9s (1960 kB/s)
After the package repositories are synced, I can
15%
15.12.2016
are over i
= 2,n
− 1 and j
= 2,n
−1. Here is how you can write the iteration over the domain using array notation:
a(2:n-1,2:n-1) = 0.25 * &
(a(1:n-2,2:n) + a(3:n,2:n) + a(2:n,1:n-2) + a(2:n,3:n
15%
25.09.2023
Quad-core Xuantie C910
64KB+64KB data/instruction caches per core
1MB shared L2 cache
GPU
50GFLOPS BXM-4-64
NPU
4TOPS INT8 at 1GHz
15%
01.06.2024
_Comm_size(MPI_COMM_WORLD, &nodenum);
21 long recieved[nodenum];
22 long recvniter[nodenum];
23 srand(SEED+myid); //Give rand() a seed value. Needs to be different on each node
24
25 if(myid != 0
15%
12.02.2014
B xsettings-kde
...
12.3 MiB + 2.2 MiB = 14.6 MiB gedit
22.9 MiB + 4.0 MiB = 26.9 MiB plasma-desktop
26.4 MiB + 5.7 MiB = 32.1 MiB konsole (3)
28.3 MiB + 4.4 MiB = 32.7 MiB kwin
147
15%
17.01.2023
is working, boot the compute node and run timedatectl
:
$ ssh n0001
[laytonjb@n0001 ~]$ timedatectl
Local time: Sat 2022-12-17 11:31:26 EST
Universal time: Sat 2022-12
15%
04.04.2023
timedatectl
$ ssh n0001
[laytonjb@n0001 ~]$ timedatectl
Local time: Sat 2022-12-17 11:31:26 EST
Universal time: Sat 2022-12-17 16:31:26 UTC
RTC time: Sat 2022-12
15%
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