tlemsl / trace_generator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Trace Generator (Memory Tracing Tool)

A memory tracing tool generating a virtual/physical address trace of the target aplication. This repository is focused on working together as a part of the CXL-flash Design Tools used in our research paper, Overcoming the Memory Wall with CXL-Enabled SSDs.

Goal

The goal of this memory tracing tool is generating raw memory trace files (*.vout or *.pout). To use MQSim_CXL in CXL-flash Design Tools, the raw trace files generated from this tool should be translated to *.trace files by using Trace Translator.

Installation

This memory tracing tool is composed of three main components: a modified version of Valgrind, the Linux kernel, and scripts to facilitate its use. Repositories of the modified version of Valgrind and Linux kernel are submodules of this repository, and they follow their own licenses, GPL v2.

The modified version of Valgrind

  1. Clone the github repository
$ git clone https://github.com/dgist-datalab/valgrind_cachetrace.git
$ cd valgrind_cachetrace
  1. Install the modified version of Valgrind
$ ./autogen.sh
$ ./configure
$ make
$ sudo make install

Linux Kernel

  • If you don't need physical traces, don't need to install this Linux kernel.
  1. Clone the github repository
$ git clone https://github.com/dgist-datalab/cxl-kernel.git
$ cd cxl-kernel
  1. Build & install the Linux kernel
$ make bindeb-pkg -j64
$ cd ../
$ dpkg -i linux-headers-5.17.4-... linux-image-5.17.4-... 
$ reboot
...

Test

  • test/ directory includes a script generating raw trace files (*.vout or *.pout) of Synthetic workloads automatically.
  • When you run test_synthetic.sh, you can select which synthetic workload to run and generate only a virtual memory trace or both virtual/physical traces.
$ cd test/
$ sudo ./test_synthetic.sh
  • After generating the trace file, you can plot a rough figure showing the memory address distribution of the trace file.
python3 after_run/graph/cg_histogram.py --input [.vout] --scatter 103
python3 after_run/graph/cg_pa_histogram.py --input [.pout] --scatter 103
  • If you want to generate trace files of your target applications, run run_script/run_script.sh with your target applications following README.

Test Output

About

License:Apache License 2.0


Languages

Language:Python 71.8%Language:Shell 18.2%Language:C 9.1%Language:C++ 0.9%