Ignore:
Timestamp:
Mar 11, 2019, 10:38:01 PM (5 years ago)
Author:
Aaron Moss <a3moss@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
834f634
Parents:
4ba22b8
Message:

thesis: color-code experiment graph by traversal direction

Location:
doc/theses/aaron_moss_PhD/phd/evaluation
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/aaron_moss_PhD/phd/evaluation/algo-summary.dat

    r4ba22b8 r811466d  
    1 "algorithm"     "tests completed"       "avg. peak memory (MB)" "avg. runtime (ms)"
    2 "\\textsc{bu-imm-bas}"  126     6       228
    3 "\\textsc{bu-imm-inc}"  124     15      281
    4 "\\textsc{bu-imm-per}"  128     6       109
    5 "\\textsc{co-imm-bas}"  104     13      1883
    6 "\\textsc{co-imm-inc}"  102     61      3039
    7 "\\textsc{co-imm-per}"  105     13      1420
    8 "\\textsc{td-imm-bas}"  64      125     2620
    9 "\\textsc{td-imm-inc}"  62      322     2717
    10 "\\textsc{bu-def-bas}"  129     6       143
    11 "\\textsc{bu-def-inc}"  126     7       213
    12 "\\textsc{bu-def-per}"  129     5       78
    13 "\\textsc{co-def-bas}"  102     14      1672
    14 "\\textsc{co-def-inc}"  100     50      2845
    15 "\\textsc{co-def-per}"  102     12      1317
    16 "\\textsc{td-def-bas}"  67      18      189
    17 "\\textsc{td-def-inc}"  66      40      263
    18 "\\textsc{bu-dca-bas}"  131     6       151
    19 "\\textsc{bu-dca-inc}"  130     7       208
    20 "\\textsc{bu-dca-per}"  131     5       80
    21 "\\textsc{co-dca-bas}"  103     14      1737
    22 "\\textsc{co-dca-inc}"  101     50      2824
    23 "\\textsc{co-dca-per}"  103     12      1339
    24 "\\textsc{td-dca-bas}"  67      18      191
    25 "\\textsc{td-dca-inc}"  66      40      258
     1"algorithm"     "tests completed"       "avg. peak memory (MB)" "avg. runtime (ms)"     "style"
     2"\\textsc{bu-imm-bas}"  126     6       228     1
     3"\\textsc{bu-imm-inc}"  124     15      281     1
     4"\\textsc{bu-imm-per}"  128     6       109     1
     5"\\textsc{bu-def-bas}"  129     6       143     1
     6"\\textsc{bu-def-inc}"  126     7       213     1
     7"\\textsc{bu-def-per}"  129     5       78      1
     8"\\textsc{bu-dca-bas}"  131     6       151     1
     9"\\textsc{bu-dca-inc}"  130     7       208     1
     10"\\textsc{bu-dca-per}"  131     5       80      1
     11"\\textsc{co-imm-bas}"  104     13      1883    2
     12"\\textsc{co-imm-inc}"  102     61      3039    2
     13"\\textsc{co-imm-per}"  105     13      1420    2
     14"\\textsc{co-def-bas}"  102     14      1672    2
     15"\\textsc{co-def-inc}"  100     50      2845    2
     16"\\textsc{co-def-per}"  102     12      1317    2
     17"\\textsc{co-dca-bas}"  103     14      1737    2
     18"\\textsc{co-dca-inc}"  101     50      2824    2
     19"\\textsc{co-dca-per}"  103     12      1339    2
     20"\\textsc{td-def-bas}"  67      18      189     3
     21"\\textsc{td-def-inc}"  66      40      263     3
     22"\\textsc{td-imm-bas}"  64      125     2620    3
     23"\\textsc{td-imm-inc}"  62      322     2717    3
     24"\\textsc{td-dca-bas}"  67      18      191     3
     25"\\textsc{td-dca-inc}"  66      40      258     3
  • doc/theses/aaron_moss_PhD/phd/evaluation/algo-summary.gp

    r4ba22b8 r811466d  
    1515
    1616# TESTS COMPLETED #
    17 set yrange [0:]
     17set yrange [0:131]
    1818
    19 plot 'evaluation/algo-summary.dat' using 2:xtic(1) with boxes
     19plot 'evaluation/algo-summary.dat' using ($5 == 1 ? $2 : 1/0):xtic(1) with boxes, \
     20        '' using ($5 == 2 ? $2 : 1/0):xtic(1) with boxes, \
     21        '' using ($5 == 3 ? $2 : 1/0):xtic(1) with boxes
    2022
    2123# BU AVG. RUNTIME #
     
    3032set output BUILD."avg-runtime.tex"
    3133
    32 plot 'evaluation/algo-summary.dat' using 4:xtic(1) with boxes
     34plot 'evaluation/algo-summary.dat' using ($5 == 1 ? $4 : 1/0):xtic(1) with boxes, \
     35        '' using ($5 == 2 ? $4 : 1/0):xtic(1) with boxes, \
     36        '' using ($5 == 3 ? $4 : 1/0):xtic(1) with boxes
    3337
    3438# BU AVG. PEAK MEMORY #
     
    4448set yrange [0:80]
    4549
    46 set label "125" at 6.25,82
    47 set label "322" at 7.75,82
    48 plot 'evaluation/algo-summary.dat' using 3:xtic(1) with boxes
     50set label "125" at 20.25,82
     51set label "322" at 21.75,82
     52plot 'evaluation/algo-summary.dat' using ($5 == 1 ? $3 : 1/0):xtic(1) with boxes, \
     53        '' using ($5 == 2 ? $3 : 1/0):xtic(1) with boxes, \
     54        '' using ($5 == 3 ? $3 : 1/0):xtic(1) with boxes
Note: See TracChangeset for help on using the changeset viewer.