gitextract_i8_6gm9e/ ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── conf.json ├── dataset/ │ ├── soc_model/ │ │ ├── README.md │ │ ├── model_e7420.json │ │ ├── model_e8890.json │ │ ├── model_e8895.json │ │ ├── model_sdm616.json │ │ ├── model_sdm625.json │ │ ├── model_sdm626.json │ │ ├── model_sdm636.json │ │ ├── model_sdm650_652_653.json │ │ ├── model_sdm660.json │ │ ├── model_sdm820.json │ │ ├── model_sdm821_v1.json │ │ ├── model_sdm821_v2.json │ │ ├── model_sdm821_v3.json │ │ ├── model_sdm835.json │ │ └── raw/ │ │ ├── e7420.xlsx │ │ ├── e8890.xlsx │ │ ├── e8895.xlsx │ │ ├── sd626.xlsx │ │ ├── sd820.xlsx │ │ ├── sd821.xlsx │ │ ├── sd835.xlsx │ │ ├── sdm616.xlsx │ │ ├── sdm636.xlsx │ │ ├── sdm650.xlsx │ │ └── sdm660.csv │ └── workload/ │ └── osborn/ │ ├── bili-danmu.json │ ├── bili-download.json │ ├── bili-feed.json │ ├── coolapk-feed.json │ ├── game-7days-city-boss.json │ ├── game-7days-city-regular.json │ ├── idle-music.json │ ├── meituan-explore.json │ ├── offscreen-merged.json │ ├── onscreen-merged.json │ ├── qq-chat.json │ ├── qq-qzone.json │ ├── raw/ │ │ ├── README.md │ │ └── info.json │ ├── share-feed.json │ ├── taobao-international-explore.json │ ├── task-switch.json │ ├── tieba-lite.json │ ├── twitter-feed.json │ ├── via-iphonexs-intro.json │ ├── wx-chat.json │ ├── wx-gongzhonghao.json │ ├── wx-moment.json │ ├── wx-select-pic.json │ └── xianyu-search.json ├── source/ │ ├── 3rd/ │ │ ├── nlohmann/ │ │ │ └── json.hpp │ │ └── openga/ │ │ └── openga.hpp │ ├── main.cpp │ ├── opt/ │ │ ├── openga_helper.cpp │ │ └── openga_helper.h │ ├── output/ │ │ ├── dump.cpp │ │ └── dump.h │ ├── sim/ │ │ ├── cpumodel.cpp │ │ ├── cpumodel.h │ │ ├── hmp.h │ │ ├── hmp_pelt.cpp │ │ ├── hmp_pelt.h │ │ ├── hmp_walt.cpp │ │ ├── hmp_walt.h │ │ ├── input_boost.cpp │ │ ├── input_boost.h │ │ ├── interactive.cpp │ │ ├── interactive.h │ │ ├── rank.cpp │ │ ├── rank.h │ │ ├── sim.hpp │ │ ├── sim_types.h │ │ ├── workload.cpp │ │ └── workload.h │ └── utils/ │ └── misc.h ├── template/ │ └── powercfg_template.sh └── tools/ ├── migrate.py ├── standby_load_20180308_from_171023.csv └── tracefile_parse.py