Created
March 15, 2014 09:30
-
-
Save SaveTheRbtz/9564007 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ numactl --membind=1 --cpunodebind=1 dd if=/dev/zero of=/dev/null bs=64M count=100 | |
100+0 records in | |
100+0 records out | |
6710886400 bytes (6.7 GB) copied, 0.911091 s, 7.4 GB/s | |
$ numactl --membind=0 --cpunodebind=1 dd if=/dev/zero of=/dev/null bs=64M count=100 | |
100+0 records in | |
100+0 records out | |
6710886400 bytes (6.7 GB) copied, 1.28833 s, 5.2 GB/s | |
$ numactl --interleave=all dd if=/dev/zero of=/dev/null bs=64M count=100 | |
100+0 records in | |
100+0 records out | |
6710886400 bytes (6.7 GB) copied, 1.10756 s, 6.1 GB/s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment