Skip to content

Flashpacker/membench

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

membench

This is a simple memory benchmark; see, e.g., "Empirical Evaluation of the CRAY-T3D: A Compiler Perspective" from ISCA 1995. The membench C code basically times

for array A of length L from 4KB to 8MB by 2x
  for stride s  from 4 bytes to L/2 by 2x
    time the following loop
    for i = 0 to L by s
      load A[i]

The raw times can be plotted as a set of lines or as a heat map (I find the latter easier to process visually).

If you are running membench on the totient cluster, you will want to obtain the timings by running qsub membench.pbs rather than by running the membench executable on the head node. The head node and the compute nodes have rather different performance characteristics.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 50.6%
  • Python 36.9%
  • Makefile 10.9%
  • Shell 1.6%