Ignore:
Timestamp:
Jun 4, 2025, 1:43:34 PM (4 months ago)
Author:
Michael Brooks <mlbrooks@…>
Branches:
master
Children:
f858ca5
Parents:
c8bdbaf
Message:

Recent rework of string benchmarks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/mike_brooks_MMath/plots/string-peq-sharing.py

    rc8bdbaf re0350e0  
    2828
    2929
    30 # Filter operation=peq, corpus=100-*-1
     30# Filter operation=peq, corpus=100-*-*+*+t0
    3131
    3232timings = timings.groupby('operation').get_group('peq')
    33 timings = timings.groupby('corpus-nstrs').get_group(100)
    34 timings = timings.groupby('corpus-runid').get_group(1)
     33timings = timings.groupby('corpus-nstrs-tgt').get_group(100)
     34timings = timings.groupby('corpus-offset-instr').get_group('t0')
    3535
    3636
     
    4343    if sut in prettyFieldNames:
    4444
    45         sgroup_sorted = sgroup.sort_values(by='corpus-meanlen')
     45        sgroup_sorted = sgroup.sort_values(by='corpusMeanLenCharsAct')
    4646
    4747        print('"{header}"'.format(header=prettyFieldNames[sut]))
    48         text = sgroup_sorted[['corpus-meanlen', 'op-duration-ns']].to_csv(header=False, index=False, sep='\t')
     48        text = sgroup_sorted[['corpusMeanLenCharsAct', 'op-duration-ns']].to_csv(header=False, index=False, sep='\t')
    4949        print(text)
    5050        print()
Note: See TracChangeset for help on using the changeset viewer.