blob: 06e691008bd53e5c13edf9c7378d50861fd35571 [file] [log] [blame]
Ward Vandewege3d83cff2009-10-28 19:41:52 +00001
2
3This is a set of tools to compare (extended) K8 memory settings.
4
5Before you can use them, you need to massage the relevant BKDG sections into
6useable data. Here's how.
7
8First, you need to acquire a copy of the K8 BKDG. Go here:
9
10 Rev F: http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/32559.pdf
11
12Then make sure pdftotext is installed (it's in the poppler-utils package on Debian/Ubuntu).
13
14Now run the bkdg through pdftotext:
15
16 pdftotext -layout 32559.pdf 32559.txt
17
18Now extract sections 4.5.15 - 4.5.19 from the file, and save it separately, say as bkdg-raw.data.
19
20Finally run the txt file through the parse-bkdg.pl script like so:
21
22 parse-bkdg.pl < bkdg-raw.data > bkdg.data
23
24Now we have the bkdg.data file that is used by the other scripts.
25
26If you want to test the scripts without doing all this work, you can use some
Stefan Reinauer14e22772010-04-27 06:56:47 +000027sample input files from the 'example_input/' directory.
Ward Vandewege3d83cff2009-10-28 19:41:52 +000028
Stefan Reinauer14e22772010-04-27 06:56:47 +000029--
Ward Vandewege3d83cff2009-10-28 19:41:52 +000030Ward Vandewege, 2009-10-28.
31ward@jhvc.com