mirror of
https://github.com/boostorg/boost_unordered_benchmarks.git
synced 2026-01-19 16:12:13 +00:00
36 lines
4.0 KiB
Bash
Executable File
36 lines
4.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
python2 insert_data.py gcc-x64/running_insertion.cpp.csv "Running insertion" "gcc-x64/Running insertion.xlsx" "plot"
|
|
python2 insert_data.py gcc-x64/running_erasure.cpp.csv "Running erasure" "gcc-x64/Running erasure.xlsx" "plot"
|
|
python2 insert_data.py gcc-x64/scattered_lookup.cpp.csv "Scattered successful lookup" "gcc-x64/Scattered successful looukp.xlsx" "plot"
|
|
python2 insert_data.py gcc-x64/scattered_lookup.cpp.csv "Scattered unsuccessful lookup" "gcc-x64/Scattered unsuccessful looukp.xlsx" "plot"
|
|
|
|
python2 insert_data.py clang-x64/running_insertion.cpp.csv "Running insertion" "clang-x64/Running insertion.xlsx" "plot"
|
|
python2 insert_data.py clang-x64/running_erasure.cpp.csv "Running erasure" "clang-x64/Running erasure.xlsx" "plot"
|
|
python2 insert_data.py clang-x64/scattered_lookup.cpp.csv "Scattered successful lookup" "clang-x64/Scattered successful looukp.xlsx" "plot"
|
|
python2 insert_data.py clang-x64/scattered_lookup.cpp.csv "Scattered unsuccessful lookup" "clang-x64/Scattered unsuccessful looukp.xlsx" "plot"
|
|
|
|
python2 insert_data.py -e utf-16 vs-x64/running_insertion.cpp.csv "Running insertion" "vs-x64/Running insertion.xlsx" "plot"
|
|
python2 insert_data.py -e utf-16 vs-x64/running_erasure.cpp.csv "Running erasure" "vs-x64/Running erasure.xlsx" "plot"
|
|
python2 insert_data.py -e utf-16 vs-x64/scattered_lookup.cpp.csv "Scattered successful lookup" "vs-x64/Scattered successful looukp.xlsx" "plot"
|
|
python2 insert_data.py -e utf-16 vs-x64/scattered_lookup.cpp.csv "Scattered unsuccessful lookup" "vs-x64/Scattered unsuccessful looukp.xlsx" "plot"
|
|
|
|
python2 insert_data.py clang-arm64/running_insertion.cpp.csv "Running insertion" "clang-arm64/Running insertion.xlsx" "plot"
|
|
python2 insert_data.py clang-arm64/running_erasure.cpp.csv "Running erasure" "clang-arm64/Running erasure.xlsx" "plot"
|
|
python2 insert_data.py clang-arm64/scattered_lookup.cpp.csv "Scattered successful lookup" "clang-arm64/Scattered successful looukp.xlsx" "plot"
|
|
python2 insert_data.py clang-arm64/scattered_lookup.cpp.csv "Scattered unsuccessful lookup" "clang-arm64/Scattered unsuccessful looukp.xlsx" "plot"
|
|
|
|
python2 insert_data.py gcc-x86/running_insertion.cpp.csv "Running insertion" "gcc-x86/Running insertion.xlsx" "plot"
|
|
python2 insert_data.py gcc-x86/running_erasure.cpp.csv "Running erasure" "gcc-x86/Running erasure.xlsx" "plot"
|
|
python2 insert_data.py gcc-x86/scattered_lookup.cpp.csv "Scattered successful lookup" "gcc-x86/Scattered successful looukp.xlsx" "plot"
|
|
python2 insert_data.py gcc-x86/scattered_lookup.cpp.csv "Scattered unsuccessful lookup" "gcc-x86/Scattered unsuccessful looukp.xlsx" "plot"
|
|
|
|
python2 insert_data.py clang-x86/running_insertion.cpp.csv "Running insertion" "clang-x86/Running insertion.xlsx" "plot"
|
|
python2 insert_data.py clang-x86/running_erasure.cpp.csv "Running erasure" "clang-x86/Running erasure.xlsx" "plot"
|
|
python2 insert_data.py clang-x86/scattered_lookup.cpp.csv "Scattered successful lookup" "clang-x86/Scattered successful looukp.xlsx" "plot"
|
|
python2 insert_data.py clang-x86/scattered_lookup.cpp.csv "Scattered unsuccessful lookup" "clang-x86/Scattered unsuccessful looukp.xlsx" "plot"
|
|
|
|
python2 insert_data.py -e utf-16 vs-x86/running_insertion.cpp.csv "Running insertion" "vs-x86/Running insertion.xlsx" "plot"
|
|
python2 insert_data.py -e utf-16 vs-x86/running_erasure.cpp.csv "Running erasure" "vs-x86/Running erasure.xlsx" "plot"
|
|
python2 insert_data.py -e utf-16 vs-x86/scattered_lookup.cpp.csv "Scattered successful lookup" "vs-x86/Scattered successful looukp.xlsx" "plot"
|
|
python2 insert_data.py -e utf-16 vs-x86/scattered_lookup.cpp.csv "Scattered unsuccessful lookup" "vs-x86/Scattered unsuccessful looukp.xlsx" "plot" |