18%
    
    
    05.08.2024
        
    
    	
        .io/library/ubuntu       latest      35a88802559d  7 weeks ago     80.6 MB
docker.io/library/hello-world  latest      d2c94e258dcb  15 months ago   28.5 kB
Listing 12: Checking for GFortran
$ podman run -it ubuntu-dev2 /bin/bash
root
    
 
		    
				        
    18%
    
    
    30.01.2024
        
    
    	
        
  
  Dell Precision Workstation T7910
  
  Power
  
  1,300W
  
  CPU
  
  2x Intel Xeon Gold E5-2699 V4, 22 cores, 2.4GHz, 55MB of cache, LGA 2011-3
  
  GPU, NPU
  
  n/a*
  
  Memory
    
 
		    
				        
    18%
    
    
    07.10.2014
        
    
    	
        .0 MB 2014-03-01 10:15  36467d       1
04   three.img    0  4.0 MB  0.0 MB  0.0 MB 2014-03-01 10:16  4e5a1c       3
05   two.img      0  4.0 MB  0.0 MB  0.0 MB 2014-03-01 10:15  a27d79       2
06   quark
    
 
		    
				        
    18%
    
    
    06.10.2019
        
    
    	
        ://creativecommons.org/licenses/by-sa/3.0/
Splint: http://splint.org
Hoare, C.A.R. An axiomatic basis for computer programming. Communications of the ACM
, 1969;12(10):576-583, https://web.archive.org/web/20160304013345/http
    
 
		    
				        
    18%
    
    
    02.08.2021
        
    
    	
         SGEMM
for N = [2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192]
   A = single( rand(N,N) );
   B = single( rand(N,N) );
   start = clock();
   C = A*B;
   elapsedTime = etime(clock(), start
    
 
		    
				        
    17%
    
    
    12.09.2013
        
    
    	
        
  
  approx. US$ 600
  
  approx. US$ 335
  
  CPU
  
  Via Eden X2/1GHz
  
  Via Eden X2/1GHz
  
  AMD G-T44R/1.2GHz
  
  AMD G-T56N/1.6GHz
  
  Marvell ARMADA PXA 510 v7.1
  
  Chipset
    
 
		    
				        
    17%
    
    
    17.06.2017
        
    
    	
         of the array), has to be specified. The following are simple examples of a declaration
INTEGER, TARGET :: a(3), b(6), c(9)INTEGER, DIMENSION(:),POINTER :: pt2
and multidimensional arrays:
INTEGER, POINTER
    
 
		    
				        
    17%
    
    
    29.09.2020
        
    
    	
         (abridged)
$ docker build -t dockly .
Sending build context to Docker daemon  16.52MB
Step 1/9 : FROM node:8-alpine
8-alpine: Pulling from library/node
e6b0cf9c0882: Pull complete
93f9cf0467ca: Pull
    
 
		    
				    
    17%
    
    
    07.01.2014
        
    
    	 
         .
[laytonjb@home4 TEST]$ du -sh backup.0
14M backup.0
[laytonjb@home4 TEST]$ du -sh backup.1
12M backup.1
[laytonjb@home4 TEST]$ du -sh backup.2
9.2M backup.2
[laytonjb@home4 TEST]$ du -sh backup.3
7.7M backup
    
 
		    
				        
    17%
    
    
    07.11.2011
        
    
    	
        
OpenMP brings the power of multiprocessing to your C, C++, and Fortran programs.
 ...       #pragma omp parallel for shared (sum) private (i)
12     for ( i=0; i < 1000000; i++) {
13         #pragma omp critical (sum_total)
14         sum = sum + a[i];
15     }
16     printf("sum=%lf\n",sum);
17 ...  
OpenMP brings the power of multiprocessing to your C, C++, and Fortran programs.