Skip to content
Snippets Groups Projects
config.py 361 B
markers = {
  "vanilla": ".",
  "kernel polling": "+",
  "irq suppression": "x",
  "irq packing": "*",
  "fstack": "d",
}

colors = {
  "vanilla": "tab:blue",
  "kernel polling": "tab:orange",
  "irq suppression": "tab:purple",
  "irq packing": "tab:red",
  "fstack": "tab:cyan",
}

patterns = {
  "vanilla": "//",
  "kernel polling": "..",
  "fstack": "--",
}