├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── Doc └── GPTune_UsersGuide.pdf ├── Dockerfile ├── FAQ └── README.md ├── GPTune ├── __init__.py ├── __version__.py ├── callcgp.py ├── callhpbandster.py ├── callhybrid.py ├── callopentuner.py ├── computer.py ├── crowdtune.py ├── data.py ├── database.py ├── gptune.py ├── lcm.py ├── mcmc.py ├── model.py ├── options.py ├── problem.py ├── sample.py └── search.py ├── GPTune_icon.png ├── Install_decision_tree.png ├── License.txt ├── README.md ├── TROUBLESHOOTING.md ├── example_scripts ├── config_butterflfypack.sh ├── config_butterflypack.sh ├── config_cleanlinux.sh ├── config_cori.sh ├── config_crusher.sh ├── config_ex3_simula.sh ├── config_ex3_simula_openmpi415.sh ├── config_frontier.sh ├── config_linux.sh ├── config_macbook.zsh ├── config_no_mpi.sh ├── config_perlmutter.sh ├── config_strumpack.sh ├── config_summit.sh ├── config_tr4_workstation.sh ├── config_wsl.sh ├── log_monitor.sh ├── run_macbook_catalina.zsh ├── run_ppopp.sh ├── run_wsl.sh ├── travis_build_gcc.sh ├── travis_build_openmpi.sh ├── travis_build_python2.sh └── travis_build_python3.sh ├── examples ├── BLIS │ ├── .gptune │ │ └── meta.json │ ├── blisv2.py │ ├── output-jobs-and-subjobs-301-304.csv │ └── run_examples.sh ├── ButterflyPACK │ ├── butterflypack_RFcavity.py │ ├── butterflypack_RFcavity_multimode.py │ ├── butterflypack_RFcavity_multimode_HO.py │ ├── butterflypack_RFcavity_multimode_HO_plotmodel.py │ ├── butterflypack_RFcavity_multimode_HO_simplex.py │ ├── butterflypack_RFcavity_multimode_simplex.py │ ├── butterflypack_ie2d.py │ ├── postmergemode.py │ └── run_examples.sh ├── CrowdTuning │ ├── Branin │ │ ├── branin_tuning.py │ │ ├── run_experiments_mac.sh │ │ ├── setup_tasks.py │ │ └── tasklist.json │ ├── Demo │ │ ├── README │ │ ├── analyze_tuning_result.py │ │ ├── demo_tuning.py │ │ ├── demo_tutorial.py │ │ ├── env.sh │ │ ├── run_experiments_linux.sh │ │ ├── run_experiments_mac.sh │ │ ├── run_tutorial_linux.sh │ │ └── run_tutorial_mac.sh │ ├── Hypre │ │ ├── README │ │ ├── analyze_tuning_result.py │ │ ├── env.sh │ │ ├── hypre_full.py │ │ ├── hypre_reduced.py │ │ ├── run_examples.sh │ │ └── sensitivity_analysis.py │ ├── NIMROD │ │ ├── README │ │ ├── analyze_solution.py │ │ ├── big_task_haswell_64nodes_2048mpis │ │ │ ├── nimrod_tuning.py │ │ │ ├── nimrod_tuning.sh │ │ │ └── run_nimrod_experiment.sh │ │ ├── crowdtuning_api.py │ │ ├── env.sh │ │ ├── gnu_craympich_haswell │ │ │ ├── nimrod_SLA_baseline.py │ │ │ ├── nimrod_SLA_baseline.sh │ │ │ ├── nimrod_TLA_base.py │ │ │ ├── nimrod_TLA_base.sh │ │ │ ├── run_nimrod_SLA_baseline.sh │ │ │ └── run_nimrod_TLA_base.sh │ │ ├── medium_task_haswell_64nodes_2048mpis │ │ │ ├── nimrod_tuning.py │ │ │ ├── nimrod_tuning.sh │ │ │ └── run_nimrod_experiment.sh │ │ ├── medium_task_knl_64nodes_2048mpis │ │ │ ├── nimrod_tuning.py │ │ │ ├── nimrod_tuning.sh │ │ │ └── run_nimrod_experiment.sh │ │ ├── medium_task_knl_64nodes_4352mpis │ │ │ ├── nimrod_tuning.py │ │ │ ├── nimrod_tuning.sh │ │ │ └── run_nimrod_experiment.sh │ │ └── sensitivity_analysis.py │ ├── ScaLAPACK-PDGEQRF │ │ ├── run_experiments.sh │ │ ├── scalapack_tuning.py │ │ └── scalapack_tuning.sh │ └── SuperLU_DIST │ │ ├── README │ │ ├── analyze_manual_result_Si5H12.py │ │ ├── analyze_tuning_result_H2O.py │ │ ├── env.sh │ │ ├── run_manual_cori.sh │ │ ├── run_tuning_cori.sh │ │ ├── sensitivity_analysis.py │ │ ├── superlu_base.py │ │ ├── superlu_dist │ │ ├── superlu_manual.py │ │ └── superlu_tuning.py ├── GPTune-Demo-MO │ ├── .gptune │ │ ├── meta.json │ │ └── model.json │ ├── BNH_MO.py │ ├── BNH_SO_y1.py │ ├── BNH_SO_y2.py │ ├── DTLZ1.py │ ├── OSY_MO.py │ ├── OSY_MO_constraint.py │ ├── OSY_SO_y1.py │ ├── OSY_SO_y2.py │ ├── RC_beam.py │ ├── TNK_MO.py │ ├── TNK_MO_constraint.py │ └── run_examples.sh ├── GPTune-Demo │ ├── .gptune │ │ ├── configs │ │ │ └── cori.json │ │ └── meta.json │ ├── analysis_TLA.py │ ├── demo.py │ ├── demo_MB.py │ ├── demo_TLA.py │ ├── demo_TLA_LCM.py │ ├── demo_TLA_WS.py │ ├── demo_TLA_base.py │ ├── demo_comparetuners.py │ ├── demo_model_reuse.py │ ├── demo_parallelperformance.py │ ├── demo_perf_model.py │ ├── demo_wgp.py │ ├── gptune.db │ │ └── GPTune-Demo.json │ ├── merge_db.py │ ├── model_comparison.py │ ├── model_comparison_updated.py │ ├── model_comparison_updated_LCM.py │ ├── model_comparison_updated_superlu.py │ ├── model_search_compare.pdf │ ├── run_cori_TLA_experiments.py │ ├── run_examples.sh │ └── test_GP_hodlr_vs_superlu.sh ├── Hypre │ ├── .gptune │ │ ├── configs │ │ │ └── cori-haswell-openmpi-gnu.json │ │ └── meta.json │ ├── hypre-driver │ │ ├── exp │ │ │ ├── cori1 │ │ │ │ ├── GPTune │ │ │ │ │ └── 0 │ │ │ │ │ │ ├── ijoutput_31_66_94_1_12_1_0.8706226937018862_0.030350226650719115_8_6_0_5_3_0_1 │ │ │ │ │ │ ├── ijoutput_31_66_94_1_13_1_0.1786567432759708_0.5661492233739168_6_4_16_5_1_12_4 │ │ │ │ │ │ ├── ijoutput_31_66_94_1_1_8_0.0008360352116848944_0.31607731731990235_10_10_-1_5_2_8_3 │ │ │ │ │ │ ├── ijoutput_31_66_94_1_1_9_0.6241568773907653_0.5475470235442839_2_8_-1_6_5_3_2 │ │ │ │ │ │ ├── ijoutput_31_66_94_1_7_2_0.11884460109075828_0.16624194876259174_6_1_18_6_1_0_3 │ │ │ │ │ │ ├── ijoutput_31_66_94_1_9_1_0.16291880215916293_0.8358055009507052_5_0_8_5_2_0_1 │ │ │ │ │ │ ├── ijoutput_31_66_94_3_1_5_0.6257489728136427_0.9772769885778221_1_1_0_9_1_6_5 │ │ │ │ │ │ ├── ijoutput_31_66_94_4_2_1_0.6054866843882899_0.6023586227610518_9_8_16_9_3_6_3 │ │ │ │ │ │ ├── ijoutput_31_66_94_4_3_1_0.47149128874511825_0.24216979752721382_11_8_0_5_0_12_0 │ │ │ │ │ │ ├── ijoutput_31_66_94_6_1_2_0.5083367635245771_0.34300670279715395_11_0_0_6_4_8_1 │ │ │ │ │ │ ├── ijoutput_34_47_79_12_1_1_0.7735605825519903_0.5066937796235006_9_2_-1_9_4_8_4 │ │ │ │ │ │ ├── ijoutput_34_47_79_15_1_1_0.12770178675720142_0.3027286091447501_11_0_16_6_2_4_3 │ │ │ │ │ │ ├── ijoutput_34_47_79_1_11_1_0.6573228738519286_0.09732880864964209_1_1_8_5_4_8_1 │ │ │ │ │ │ ├── ijoutput_34_47_79_1_15_1_0.04775125685783855_0.460420694140662_7_8_-1_6_2_6_0 │ │ │ │ │ │ ├── ijoutput_34_47_79_1_3_3_0.4223242085336411_0.6740323416893574_5_2_8_8_0_12_1 │ │ │ │ │ │ ├── ijoutput_34_47_79_1_3_4_0.5523608760571198_0.984479120734407_6_0_8_7_4_3_1 │ │ │ │ │ │ ├── ijoutput_34_47_79_2_1_6_0.6734755815935025_0.466708693454774_6_3_8_6_0_6_3 │ │ │ │ │ │ ├── ijoutput_34_47_79_2_5_1_0.6625405959072508_0.3761772360152143_12_10_-1_9_0_8_5 │ │ │ │ │ │ ├── ijoutput_34_47_79_3_1_3_0.7757338203920272_0.5301449501104024_1_8_6_9_0_4_4 │ │ │ │ │ │ ├── ijoutput_34_47_79_3_1_5_0.0445600376369228_0.27687861690791676_7_2_8_7_2_3_1 │ │ │ │ │ │ ├── ijoutput_57_32_42_14_1_1_0.6113337811825266_0.017276298669388845_7_2_8_9_2_0_1 │ │ │ │ │ │ ├── ijoutput_57_32_42_1_1_11_0.1368938372127989_0.20377887475366088_8_3_8_6_3_12_5 │ │ │ │ │ │ ├── ijoutput_57_32_42_1_3_3_0.4223242085336411_0.6740323416893574_5_2_8_8_0_12_1 │ │ │ │ │ │ ├── ijoutput_57_32_42_1_3_4_0.5523608760571198_0.984479120734407_6_0_8_7_4_3_1 │ │ │ │ │ │ ├── ijoutput_57_32_42_1_4_2_0.7644133010103586_0.737699905858905_3_10_0_9_2_12_0 │ │ │ │ │ │ ├── ijoutput_57_32_42_1_5_3_0.2611277191647153_0.0956293947161909_3_0_8_5_1_12_5 │ │ │ │ │ │ ├── ijoutput_57_32_42_2_1_6_0.6734755815935025_0.466708693454774_6_3_8_6_0_6_3 │ │ │ │ │ │ ├── ijoutput_57_32_42_3_1_3_0.7757338203920272_0.5301449501104024_1_8_6_9_0_4_4 │ │ │ │ │ │ ├── ijoutput_57_32_42_3_1_5_0.0445600376369228_0.27687861690791676_7_2_8_7_2_3_1 │ │ │ │ │ │ ├── ijoutput_57_32_42_7_2_1_0.2375677875869095_0.4238296431012244_9_0_0_9_0_6_5 │ │ │ │ │ │ ├── ijoutput_88_25_71_15_1_1_0.7846958549984868_0.5352779446570058_12_2_6_5_0_6_5 │ │ │ │ │ │ ├── ijoutput_88_25_71_1_12_1_0.07418112394790449_0.8695780224781006_9_4_0_6_0_3_5 │ │ │ │ │ │ ├── ijoutput_88_25_71_1_13_1_0.1786567432759708_0.5661492233739168_6_4_16_5_1_12_4 │ │ │ │ │ │ ├── ijoutput_88_25_71_1_1_11_0.24645943780671467_0.5941792811694862_2_1_-1_8_5_6_3 │ │ │ │ │ │ ├── ijoutput_88_25_71_1_1_14_0.8461965100981036_0.5316954086775725_10_6_-1_5_1_5_2 │ │ │ │ │ │ ├── ijoutput_88_25_71_1_1_9_0.9289500333042335_0.38431336955020506_11_10_-1_9_1_3_3 │ │ │ │ │ │ ├── ijoutput_88_25_71_1_7_2_0.11884460109075828_0.16624194876259174_6_1_18_6_1_0_3 │ │ │ │ │ │ ├── ijoutput_88_25_71_3_1_5_0.6257489728136427_0.9772769885778221_1_1_0_9_1_6_5 │ │ │ │ │ │ ├── ijoutput_88_25_71_4_2_1_0.6054866843882899_0.6023586227610518_9_8_16_9_3_6_3 │ │ │ │ │ │ └── ijoutput_88_25_71_6_1_2_0.5083367635245771_0.34300670279715395_11_0_0_6_4_8_1 │ │ │ │ ├── hpbandster │ │ │ │ │ └── 0 │ │ │ │ │ │ ├── ijoutput_31_66_94_1_10_1_0.03304998079587085_0.8938872128714805_8_6_-1_5_4_5_3 │ │ │ │ │ │ ├── ijoutput_31_66_94_1_14_1_0.11269160128205191_0.1915264540025874_4_1_0_5_5_6_0 │ │ │ │ │ │ ├── ijoutput_31_66_94_1_2_5_0.962273670780013_0.7544272374420985_10_0_-1_8_1_4_2 │ │ │ │ │ │ ├── ijoutput_31_66_94_1_3_5_0.5762229602589896_0.586236215574675_3_6_8_5_5_6_2 │ │ │ │ │ │ ├── ijoutput_31_66_94_1_7_2_0.4262742702061887_0.5873019297437576_5_2_-1_5_3_0_3 │ │ │ │ │ │ ├── ijoutput_31_66_94_2_2_2_0.7253993056183138_0.1179923165970348_5_3_6_9_5_3_2 │ │ │ │ │ │ ├── ijoutput_31_66_94_2_5_1_0.5272279068448781_0.9911428452027263_12_0_-1_5_1_8_3 │ │ │ │ │ │ ├── ijoutput_31_66_94_3_1_3_0.7394389621716647_0.7716694709830055_11_3_18_6_1_0_3 │ │ │ │ │ │ ├── ijoutput_31_66_94_4_3_1_0.46578978130150683_0.835023861347936_11_3_18_6_0_6_0 │ │ │ │ │ │ ├── ijoutput_31_66_94_6_1_2_0.8717835150108767_0.7770644732996782_11_10_8_8_1_5_1 │ │ │ │ │ │ ├── ijoutput_34_47_79_12_1_1_0.28413927872949574_0.5084529861079755_9_6_18_5_2_8_0 │ │ │ │ │ │ ├── ijoutput_34_47_79_12_1_1_0.6388467856512254_0.5849943662812845_8_3_-1_8_3_0_5 │ │ │ │ │ │ ├── ijoutput_34_47_79_1_12_1_0.5832526068709329_0.30903546784695446_2_3_18_6_0_6_4 │ │ │ │ │ │ ├── ijoutput_34_47_79_1_1_10_0.0978955616538455_0.9575546341447362_8_10_6_9_3_6_3 │ │ │ │ │ │ ├── ijoutput_34_47_79_1_1_11_0.4658369967978192_0.8485241257185804_7_3_18_7_1_0_2 │ │ │ │ │ │ ├── ijoutput_34_47_79_1_5_2_0.63022567813018_0.7509862843442926_7_0_6_5_3_5_0 │ │ │ │ │ │ ├── ijoutput_34_47_79_4_2_1_0.046177509616755597_0.4394488679554214_1_1_8_8_2_5_1 │ │ │ │ │ │ ├── ijoutput_34_47_79_4_3_1_0.27364764426453336_0.9440350868247188_12_10_8_6_4_5_0 │ │ │ │ │ │ ├── ijoutput_34_47_79_6_1_2_0.32670459472435753_0.9160834366411598_6_3_8_5_4_4_3 │ │ │ │ │ │ ├── ijoutput_34_47_79_7_1_2_0.8591147729458372_0.33580877949914856_1_3_8_7_1_8_0 │ │ │ │ │ │ ├── ijoutput_57_32_42_1_14_1_0.2738264647320059_0.5013572331021305_7_8_18_8_4_0_5 │ │ │ │ │ │ ├── ijoutput_57_32_42_1_1_10_0.9575865410252079_0.6645739147612177_4_6_18_9_2_6_2 │ │ │ │ │ │ ├── ijoutput_57_32_42_1_1_9_0.08448745428794813_0.4354171095795265_3_3_16_8_3_8_4 │ │ │ │ │ │ ├── ijoutput_57_32_42_1_2_7_0.9929590776652316_0.4903038261092063_3_10_16_6_4_4_1 │ │ │ │ │ │ ├── ijoutput_57_32_42_1_3_3_0.5534460590475712_0.9465260019097834_5_3_8_5_0_0_3 │ │ │ │ │ │ ├── ijoutput_57_32_42_1_3_4_0.013863563376322219_0.2970056653073466_4_6_8_8_4_0_2 │ │ │ │ │ │ ├── ijoutput_57_32_42_1_4_2_0.8935768888139404_0.11532377544002548_8_8_-1_8_2_0_5 │ │ │ │ │ │ ├── ijoutput_57_32_42_2_1_4_0.9468285715362186_0.7891848314110083_6_6_16_8_2_4_3 │ │ │ │ │ │ ├── ijoutput_57_32_42_2_2_2_0.39777708868479367_0.35491101640963474_6_6_8_6_5_12_5 │ │ │ │ │ │ ├── ijoutput_57_32_42_5_1_2_0.5030592896036727_0.589610643889302_4_0_18_5_3_5_4 │ │ │ │ │ │ ├── ijoutput_88_25_71_1_11_1_0.5107755337767157_0.5311989370723254_12_10_8_8_3_8_3 │ │ │ │ │ │ ├── ijoutput_88_25_71_1_12_1_0.3373968365049742_0.8369126846948827_7_10_6_7_3_0_2 │ │ │ │ │ │ ├── ijoutput_88_25_71_1_12_1_0.6401574850017849_0.8422500136069557_4_8_0_6_3_6_0 │ │ │ │ │ │ ├── ijoutput_88_25_71_1_1_15_0.22292906052807837_0.7692897248784615_4_2_8_8_4_8_1 │ │ │ │ │ │ ├── ijoutput_88_25_71_1_5_2_0.24337487104021072_0.7334468561000268_6_10_8_9_0_3_0 │ │ │ │ │ │ ├── ijoutput_88_25_71_2_1_5_0.8176425896376692_0.47961881156358177_5_2_6_8_4_12_5 │ │ │ │ │ │ ├── ijoutput_88_25_71_2_4_1_0.703426468101961_0.4697636617756057_3_1_-1_5_1_0_5 │ │ │ │ │ │ ├── ijoutput_88_25_71_3_2_2_0.25566118967897467_0.3948349269674992_3_6_6_8_1_8_3 │ │ │ │ │ │ ├── ijoutput_88_25_71_4_1_3_0.05792171110494604_0.3830474369262884_10_3_18_6_0_6_4 │ │ │ │ │ │ └── ijoutput_88_25_71_8_1_1_0.36355513196097144_0.3432244553685593_3_6_8_7_5_6_4 │ │ │ │ └── opentuner │ │ │ │ │ └── 0 │ │ │ │ │ ├── ijoutput_31_66_94_3_1_5_0.23714033350704422_0.6248871901179123_7_2_8_7_2_3_2 │ │ │ │ │ ├── ijoutput_31_66_94_3_1_5_0.23714033350704422_0.6248871901179123_7_6_8_7_2_3_2 │ │ │ │ │ ├── ijoutput_31_66_94_3_1_5_0.23714033350704422_0.6248871901179123_7_6_8_7_2_6_1 │ │ │ │ │ ├── ijoutput_31_66_94_3_1_5_0.23714033350704422_0.6248871901179123_7_6_8_7_4_6_1 │ │ │ │ │ ├── ijoutput_31_66_94_3_1_5_0.23714033350704422_0.9093144221477598_7_6_8_7_2_3_2 │ │ │ │ │ ├── ijoutput_31_66_94_3_1_5_0.33894322398390264_0.09866989779021462_7_6_8_7_2_3_2 │ │ │ │ │ ├── ijoutput_31_66_94_3_1_5_0.33894322398390264_0.09866989779021462_7_8_8_7_2_3_5 │ │ │ │ │ ├── ijoutput_31_66_94_3_1_5_0.33894322398390264_0.1531280679091015_7_6_8_7_2_3_4 │ │ │ │ │ ├── ijoutput_31_66_94_3_1_5_0.33894322398390264_0.6248871901179123_7_6_8_7_2_3_2 │ │ │ │ │ ├── ijoutput_31_66_94_3_1_5_0.4651055017203902_0.09866989779021462_7_6_8_7_2_3_2 │ │ │ │ │ ├── ijoutput_57_32_42_1_1_10_0.0_0.6624368178711549_1_1_8_6_0_5_5 │ │ │ │ │ ├── ijoutput_57_32_42_1_1_11_0.0_0.6624368178711549_7_1_8_6_0_5_5 │ │ │ │ │ ├── ijoutput_57_32_42_1_1_12_0.0_0.5354961747936906_7_2_0_8_0_3_4 │ │ │ │ │ ├── ijoutput_57_32_42_1_1_14_0.0_0.6198681267610745_7_1_8_6_0_5_5 │ │ │ │ │ ├── ijoutput_57_32_42_1_1_14_0.0_0.6624368178711549_12_1_8_5_0_5_5 │ │ │ │ │ ├── ijoutput_57_32_42_1_1_14_0.0_0.6624368178711549_7_1_0_6_0_5_5 │ │ │ │ │ ├── ijoutput_57_32_42_1_1_14_0.0_0.6624368178711549_7_1_8_6_0_5_5 │ │ │ │ │ ├── ijoutput_57_32_42_1_1_14_0.0_0.6624368178711549_7_4_6_6_0_5_5 │ │ │ │ │ ├── ijoutput_57_32_42_1_1_14_0.0_0.6624368178711549_7_6_8_6_0_5_5 │ │ │ │ │ ├── ijoutput_57_32_42_1_1_14_0.5626841592193953_0.6624368178711549_7_1_0_6_0_5_5 │ │ │ │ │ └── ijoutput_57_32_42_1_1_15_0.0_0.6624368178711549_7_3_8_6_0_3_5 │ │ │ ├── mymachine │ │ │ │ └── GPTune │ │ │ │ │ └── 98851 │ │ │ │ │ ├── ijoutput_33_22_24_1_1_2_0.464082488892553_0.7992754704887874_2_1_0_5_1_4_0 │ │ │ │ │ ├── ijoutput_33_22_24_1_2_1_0.08228620392387907_0.43082888460590807_11_3_-1_6_3_6_5 │ │ │ │ │ ├── ijoutput_33_22_24_1_2_1_0.7348391594636331_0.6480433782540044_2_2_8_8_4_6_4 │ │ │ │ │ └── ijoutput_33_22_24_2_1_1_0.6482405754039832_0.20726888910586092_4_10_6_5_0_12_3 │ │ │ └── tr4 │ │ │ │ ├── GPTune │ │ │ │ ├── 938 │ │ │ │ │ ├── ijoutput_43_24_33_12_1_1_0.775569104216487_0.3669894695735906_9_4_0_9_4_3_0 │ │ │ │ │ ├── ijoutput_43_24_33_1_11_1_0.7348391594636331_0.6480433782540044_2_2_8_8_4_6_4 │ │ │ │ │ ├── ijoutput_43_24_33_1_12_1_0.5418615278687376_0.7915888277492623_9_10_0_9_4_4_5 │ │ │ │ │ ├── ijoutput_43_24_33_1_5_2_0.2835573585685147_0.251411234254449_12_3_16_5_1_6_5 │ │ │ │ │ ├── ijoutput_43_24_33_2_4_1_0.464082488892553_0.7992754704887874_2_1_0_5_1_4_0 │ │ │ │ │ ├── ijoutput_43_24_33_2_6_1_0.021671627670914292_0.1790617188147384_10_1_8_5_4_4_5 │ │ │ │ │ ├── ijoutput_43_24_33_3_2_2_0.03592580740410037_0.5208802917009943_3_6_6_5_4_0_5 │ │ │ │ │ ├── ijoutput_43_24_33_3_3_1_0.1586942093998349_0.9942657030318188_2_0_18_5_4_12_5 │ │ │ │ │ ├── ijoutput_43_24_33_3_4_1_0.004641326687537419_0.39749255695015456_1_0_8_6_1_12_0 │ │ │ │ │ └── ijoutput_43_24_33_7_2_1_0.5622139869718416_0.2775018546071459_6_1_0_6_5_4_4 │ │ │ │ ├── 26707 │ │ │ │ │ ├── ijoutput_34_35_29_1_1_1_0.10047629248414147_0.9647560176262308_6_3_16_9_3_3_3 │ │ │ │ │ ├── ijoutput_34_35_29_1_1_2_0.505456748819505_0.9649487646917385_10_0_18_8_5_6_1 │ │ │ │ │ ├── ijoutput_34_35_29_1_2_1_0.17295581100870544_0.9370527508700026_10_2_6_6_4_8_3 │ │ │ │ │ ├── ijoutput_34_35_29_1_2_1_0.4030914915549236_0.2600090371362509_4_1_-1_9_4_0_4 │ │ │ │ │ ├── ijoutput_34_35_29_1_2_1_0.7103643745529442_0.6292807125650293_12_3_-1_6_4_6_2 │ │ │ │ │ ├── ijoutput_34_35_29_1_2_1_0.7581124327289295_0.10604682320439014_3_1_0_5_4_8_2 │ │ │ │ │ ├── ijoutput_34_35_29_2_1_1_0.8742563486915463_0.5276070707277032_10_3_0_6_4_12_3 │ │ │ │ │ └── ijoutput_34_35_29_2_1_1_0.9717631642703163_0.07547775388945456_6_4_18_7_1_0_1 │ │ │ │ ├── 60653 │ │ │ │ │ ├── ijoutput_34_21_29_1_1_2_0.7507776331388479_0.5589919119805276_6_1_16_9_3_5_2 │ │ │ │ │ ├── ijoutput_34_21_29_1_2_1_0.16491142696848773_0.6593737536538742_8_8_6_9_0_12_1 │ │ │ │ │ ├── ijoutput_34_21_29_1_2_1_0.20552630277394865_0.5220586988288941_1_1_16_8_4_0_0 │ │ │ │ │ ├── ijoutput_34_21_29_1_2_1_0.25502686243517325_0.8720475473224527_5_3_-1_5_4_12_1 │ │ │ │ │ ├── ijoutput_34_21_29_2_1_1_0.8765548868584325_0.19338442132644196_6_10_8_8_1_5_4 │ │ │ │ │ └── ijoutput_34_21_29_2_1_1_0.961373517207805_0.11808490524942418_3_8_-1_5_1_0_1 │ │ │ │ ├── 81341 │ │ │ │ │ ├── ijoutput_34_35_29_1_1_2_0.7507776331388479_0.5589919119805276_6_1_16_9_3_5_2 │ │ │ │ │ ├── ijoutput_34_35_29_1_2_1_0.25502686243517325_0.8720475473224527_5_3_-1_5_4_12_1 │ │ │ │ │ ├── ijoutput_34_35_29_1_3_1_0.8381718178836659_0.8079204075953169_11_3_-1_6_3_4_1 │ │ │ │ │ ├── ijoutput_34_35_29_2_1_1_0.01619411626252623_0.004284176041127512_8_3_16_5_1_0_0 │ │ │ │ │ ├── ijoutput_34_35_29_2_1_1_0.3613934415766485_0.0933491472849723_12_1_-1_8_5_3_0 │ │ │ │ │ └── ijoutput_34_35_29_2_1_1_0.8765548868584325_0.19338442132644196_6_10_8_8_1_5_4 │ │ │ │ ├── 124655 │ │ │ │ │ ├── ijoutput_34_31_40_1_1_2_0.7507776331388479_0.5589919119805276_6_1_16_9_3_5_2 │ │ │ │ │ ├── ijoutput_34_31_40_1_1_2_0.9930519455327274_0.23462311761770302_11_8_6_6_4_6_2 │ │ │ │ │ ├── ijoutput_34_31_40_1_2_1_0.25502686243517325_0.8720475473224527_5_3_-1_5_4_12_1 │ │ │ │ │ ├── ijoutput_34_31_40_1_2_1_0.6899390407847731_0.5384872325187724_7_3_6_5_4_5_1 │ │ │ │ │ ├── ijoutput_34_31_40_2_1_1_0.8243943323795626_0.3228795350165835_11_8_16_6_5_0_2 │ │ │ │ │ └── ijoutput_34_31_40_2_1_1_0.8765548868584325_0.19338442132644196_6_10_8_8_1_5_4 │ │ │ │ └── 130654 │ │ │ │ │ ├── ijoutput_35_36_35_1_2_7_0.9144127959788524_0.9742932140480797_3_3_6_9_4_8_4 │ │ │ │ │ ├── ijoutput_35_36_35_1_5_3_0.9446416231617665_0.000640950187890832_9_10_18_8_1_3_3 │ │ │ │ │ ├── ijoutput_35_36_35_1_7_2_0.11884460109075828_0.16624194876259174_6_1_18_6_1_0_3 │ │ │ │ │ ├── ijoutput_35_36_35_3_1_5_0.0445600376369228_0.27687861690791676_7_2_8_7_2_3_1 │ │ │ │ │ └── ijoutput_35_36_35_3_1_5_0.6257489728136427_0.9772769885778221_1_1_0_9_1_6_5 │ │ │ │ └── hpbandster │ │ │ │ ├── 81679 │ │ │ │ ├── ijoutput_34_35_29_1_2_1_0.6126204132016422_0.22776960636042598_6_4_16_7_4_4_4 │ │ │ │ ├── ijoutput_34_35_29_3_1_1_0.06857096453446365_0.9412889223350261_8_2_8_7_2_4_1 │ │ │ │ └── ijoutput_34_35_29_3_1_1_0.23950925880911866_0.06117223268991612_8_10_8_7_1_6_2 │ │ │ │ └── 81746 │ │ │ │ ├── ijoutput_34_35_29_1_1_1_0.6279115321908805_0.08538882829330652_1_4_8_7_5_6_4 │ │ │ │ ├── ijoutput_34_35_29_1_1_2_0.5446979814779164_0.9538680914136437_7_2_6_6_4_12_5 │ │ │ │ ├── ijoutput_34_35_29_1_1_3_0.266041354514314_0.9350512523218454_6_6_8_8_4_5_1 │ │ │ │ ├── ijoutput_34_35_29_1_1_3_0.5933090973733791_0.18125288940934192_11_4_0_8_5_3_2 │ │ │ │ ├── ijoutput_34_35_29_1_2_1_0.7017576935801626_0.9873218333710955_2_4_6_7_3_6_1 │ │ │ │ └── ijoutput_34_35_29_1_3_1_0.35685936743252233_0.3017605144257548_3_0_6_7_1_8_5 │ │ ├── hypredriver.py │ │ └── src │ │ │ └── ij.c │ ├── hypre.py │ ├── hypre_2d.py │ ├── hypre_2d_dimmerge.py │ ├── hypre_MB.py │ ├── hypre_model_reuse.py │ ├── run_cori_hypre.sh │ ├── run_cori_hypre_loadmodel_compare.sh │ └── run_examples.sh ├── IMPACT-Z │ ├── .gptune │ │ └── meta.json │ ├── ImpactZ.in_test1 │ ├── ImpactZ.in_test2 │ ├── a.out_SIMPLEX │ ├── fort.18 │ ├── fort.24 │ ├── fort.25 │ ├── fort.26 │ ├── fort.27 │ ├── fort.28 │ ├── fort.29 │ ├── fort.3 │ ├── fort.32 │ ├── impact-z-driver │ │ ├── Input.f90 │ │ └── main.f90 │ ├── impact-z_single.py │ ├── impact-z_single1D.py │ ├── impact-z_single_simplex.py │ ├── matchquad.in_test1 │ ├── matchquad.in_test2 │ └── run_examples.sh ├── MFEM │ ├── mfem-driver │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ └── ex3p_indef.cpp │ ├── mfem_maxwell3d.py │ ├── mfem_maxwell3d_inline-tet.py │ ├── run_cori_mfem.sh │ ├── run_cori_mfem_inline-tet.sh │ └── run_examples.sh ├── MFEM_RCI │ ├── .gptune │ │ └── meta.json │ ├── gptune.db │ │ └── MFEM.json.temp │ ├── mfem_maxwell3d_MB_RCI.py │ ├── mfem_maxwell3d_MB_RCI.sh │ ├── mfem_maxwell3d_MO_RCI.py │ ├── mfem_maxwell3d_MO_RCI.sh │ ├── mfem_maxwell3d_RCI.py │ ├── mfem_maxwell3d_RCI.sh │ ├── parse_GPTuneBand_db.py │ └── run_examples.sh ├── NIMROD │ ├── .gptune │ │ └── meta.json │ ├── nimrod_single_MB.py │ ├── run_cori_haswell_gnu_nimrod_MB.sh │ ├── run_cori_haswell_gnu_nimrod_default_only.sh │ ├── run_examples.sh │ └── runit_gnu.sh ├── NIMROD_RCI │ ├── .gptune │ │ └── meta.json │ ├── nimrod_single_MB_RCI.py │ ├── nimrod_single_MB_RCI.sh │ ├── nimrod_single_slu3d_MB_RCI.py │ ├── nimrod_single_slu3d_MB_RCI.sh │ ├── parse_GPTuneBand_db.py │ └── run_examples.sh ├── NewtonSketch │ ├── grid_search.py │ ├── run_experiment.sh │ ├── tune_gaussian.py │ ├── tune_less_sparse.py │ └── tune_rrs.py ├── PLASMA │ ├── dgels.py │ ├── dgemm.py │ ├── dgeqrf-ips.py │ ├── dgeqrf.py │ └── reference_profiler │ │ ├── Makefile │ │ ├── make.inc │ │ ├── pmc_profiler.c │ │ ├── pmc_profiler.h │ │ ├── pmc_sampler.c │ │ └── pmc_sampler.h ├── QTT-FDTD │ ├── .gptune │ │ └── meta.json │ ├── QTT_MLA_MO_RCI.py │ ├── QTT_MLA_MO_RCI.sh │ ├── gptune.db │ │ └── QTT-FDTD.json │ ├── log.qtt-fdtd │ └── run_examples.sh ├── STRUMPACK-KRR-HSS │ ├── .gptune │ │ └── configs │ │ │ └── cori-haswell-openmpi-gnu-1nodes.json │ ├── STRUMPACK-driver │ │ └── src │ │ │ ├── Kernel.cpp │ │ │ ├── Kernel.h │ │ │ ├── KernelRegressionMPI.py │ │ │ └── STRUMPACKKernel.py │ ├── install.sh │ ├── run_cori_experiments.py │ ├── run_cori_experiments.sh │ ├── run_examples.sh │ └── strumpack_MLA_KRR_HSS.py ├── STRUMPACK │ ├── .gptune │ │ ├── configs │ │ │ └── cori-haswell-openmpi-gnu-1nodes.json │ │ └── meta.json │ ├── STRUMPACK-driver │ │ └── src │ │ │ ├── KernelRegressionMPI.py │ │ │ └── testPoisson3dMPIDist.cpp │ ├── run_examples.sh │ ├── strumpack_MLA_1gpu.py │ ├── strumpack_MLA_KRR.py │ ├── strumpack_MLA_KRR_MB.py │ ├── strumpack_MLA_KRR_MO.py │ ├── strumpack_MLA_Poisson3d.py │ ├── strumpack_MLA_Poisson3d_simple.py │ └── strumpack_parse_GPTuneBand_db.py ├── ScaLAPACK-PDGEQRF-ATMG │ ├── .gptune │ │ ├── configs │ │ │ ├── cori-haswell-openmpi-gnu-1nodes.json │ │ │ ├── cori-haswell-openmpi-gnu-32nodes.json │ │ │ ├── cori-haswell-openmpi-gnu-4nodes.json │ │ │ ├── cori-haswell-openmpi-gnu-64nodes.json │ │ │ ├── cori-haswell-openmpi-gnu-8nodes.json │ │ │ └── cori-knl-openmpi-gnu-1nodes.json │ │ ├── meta.json │ │ └── model.json │ ├── README │ ├── analysis_TLA-64nodes.py │ ├── analysis_TLA.py │ ├── merge_db.py │ ├── run_cori_TLA_experiments-64nodes.py │ ├── run_cori_TLA_experiments.py │ ├── run_cori_scalapack.sh │ ├── scalapack-driver │ │ ├── Makefile │ │ ├── bin │ │ │ └── .gitignore │ │ ├── exp │ │ │ └── .gitignore │ │ ├── spt │ │ │ └── pdqrdriver.py │ │ └── src │ │ │ ├── pdgelqrv.f │ │ │ ├── pdgeqlrv.f │ │ │ ├── pdgeqrrv.f │ │ │ ├── pdgerqrv.f │ │ │ ├── pdlafchk.f │ │ │ ├── pdmatgen.f │ │ │ ├── pdqrdriver.f │ │ │ ├── pdqrinfo.f │ │ │ ├── pdtzrzrv.f │ │ │ └── pmatgeninc.f │ ├── scalapack_MLA.py │ ├── scalapack_TLA_machine.py │ └── scalapack_TLA_task.py ├── Scalapack-PDGEQRF │ ├── .gptune │ │ ├── configs │ │ │ ├── cori-haswell-openmpi-gnu-1nodes.json │ │ │ ├── cori-haswell-openmpi-gnu-4nodes.json │ │ │ ├── cori-haswell-openmpi-gnu-8nodes.json │ │ │ └── cori-knl-openmpi-gnu-1nodes.json │ │ ├── meta.json │ │ └── model.json │ ├── analysis_TLA-64nodes.py │ ├── run_cori_TLA_experiments-64nodes.py │ ├── run_cori_scalapack.sh │ ├── run_cori_scalapack_perfmodel_compare.sh │ ├── run_cori_scalapack_tunercompare.sh │ ├── run_examples.sh │ ├── scalapack-driver │ │ ├── Makefile │ │ ├── bin │ │ │ └── .gitignore │ │ ├── exp │ │ │ └── .gitignore │ │ ├── spt │ │ │ └── pdqrdriver.py │ │ └── src │ │ │ ├── pdgelqrv.f │ │ │ ├── pdgeqlrv.f │ │ │ ├── pdgeqrrv.f │ │ │ ├── pdgerqrv.f │ │ │ ├── pdlafchk.f │ │ │ ├── pdmatgen.f │ │ │ ├── pdqrdriver.f │ │ │ ├── pdqrinfo.f │ │ │ ├── pdtzrzrv.f │ │ │ └── pmatgeninc.f │ ├── scalapack_MLA.py │ ├── scalapack_MLA_perfmodel.py │ ├── scalapack_TLA_backup.py │ ├── scalapack_TLA_machine.py │ ├── scalapack_TLA_task.py │ └── scalapack_sensitivity_analysis.py ├── Scalapack-PDGEQRF_RCI │ ├── .gptune │ │ └── meta.json │ ├── run_examples.sh │ ├── scalapack-driver │ │ ├── bin │ │ │ └── .gitignore │ │ ├── exp │ │ │ └── .gitignore │ │ └── spt │ │ │ └── pdqrdriver_in_out.py │ ├── scalapack_MLA_RCI.py │ └── scalapack_MLA_RCI.sh ├── SmoothingSplines │ ├── .gptune │ │ └── meta.json │ ├── datagen │ │ └── gendata.py │ ├── env_cori.sh │ ├── get_dataset.sh │ ├── gptune-search-experiments.py │ ├── gptune-search-gpy-household.py │ ├── gptune-search-gpy-winequality.py │ ├── gptune-search-gpy.py │ ├── gptune-search-lcm-household.py │ ├── gptune-search-lcm-winequality.py │ ├── gptune-search-lcm.py │ ├── gptune-search.py │ ├── grid-search-winequality.py │ ├── grid-search.py │ ├── run_cori_grid-search.sh │ └── winequality │ │ ├── score_test.txt │ │ ├── score_train.txt │ │ ├── wine_test.txt │ │ └── wine_train.txt ├── SuperLU_DIST │ ├── .gptune │ │ ├── configs │ │ │ └── cori-haswell-openmpi-gnu.json │ │ └── meta.json │ ├── download_more_example_matrices.sh │ ├── run_cori_superlu_real_MLA_MO.sh │ ├── run_cori_superlu_real_MLA_TLA.sh │ ├── run_cori_superlu_real_single_MO.sh │ ├── run_examples.sh │ ├── superlu_MLA.py │ ├── superlu_MLA_1gpu.py │ ├── superlu_MLA_MO.py │ ├── superlu_MLA_MO_complex.py │ ├── superlu_MLA_ngpu.py │ └── superlu_single_MO.py ├── SuperLU_DIST_RCI │ ├── .gptune │ │ └── meta.json │ ├── run_examples.sh │ ├── superlu_MLA_3D_MO_RCI.py │ ├── superlu_MLA_3D_MO_RCI.sh │ ├── superlu_MLA_3D_ngpu_MO_RCI.py │ ├── superlu_MLA_3D_ngpu_MO_RCI.sh │ ├── superlu_MLA_MO_RCI.py │ ├── superlu_MLA_MO_RCI.sh │ ├── superlu_MLA_RCI.py │ ├── superlu_MLA_RCI.sh │ ├── superlu_MLA_ngpu_MO_RCI.py │ ├── superlu_MLA_ngpu_MO_RCI.sh │ ├── superlu_MLA_ngpu_RCI.py │ └── superlu_MLA_ngpu_RCI.sh ├── cnnMNIST │ ├── .gptune │ │ └── meta.json │ ├── cnnMNIST-driver │ │ └── cnnMNISTdriver.py │ ├── cnnMNIST_MB.py │ └── run_examples.sh ├── heffte_RCI │ ├── heffte_RCI.py │ ├── heffte_RCI.sh │ └── run_examples.sh └── postprocess │ ├── MFEM_RCI │ ├── parse_plot_history.sh │ ├── parse_results_history.py │ └── plot_history.py │ ├── NIMROD_RCI │ ├── parse_plot_history.sh │ ├── parse_results_history.py │ └── plot_history.py │ ├── STRUMPACK │ ├── krr_parse_plot_history.sh │ ├── krr_parse_results_history.py │ └── krr_plot_history.py │ ├── demo │ ├── demo_ntask20_nrun20_model │ ├── demo_ntask20_nrun20_nomodel │ ├── demo_ntask20_nrun40_model │ ├── demo_ntask20_nrun40_nomodel │ ├── demo_ntask20_nrun80_model │ ├── demo_ntask20_nrun80_nomodel │ ├── demo_parse_results.py │ ├── demo_plot_performancemodel.py │ ├── demo_plot_performancemodel_tex.py │ ├── line_colors.m │ ├── models_demo_nodes1_ntask20.pkl │ ├── models_demo_nodes1_ntask20.txt │ ├── obj_t_0.000000.eps │ ├── parallel_model_search_cori.m │ ├── parse_plot.sh │ ├── plot_obj_demo.py │ ├── plot_pareto_demo.py │ └── plots │ │ └── models_demo_nodes1_ntask20.pdf │ ├── hypre │ ├── exp_hypre_Poisson_nmax100_nmin10_ntask30.txt │ ├── exp_hypre_Poisson_nmax150_nmin10_ntask60.txt │ ├── exp_hypre_Poisson_nmax150_nmin30_ntask30.txt │ ├── exp_hypre_Poisson_nmax200_nmin100_ntask30.txt │ ├── exp_hypre_Poisson_nmax200_nmin10_ntask90.txt │ ├── exp_hypre_convdiff_nmax100_nmin10_ntask30.txt │ ├── exp_hypre_convdiff_nmax200_nmin100_ntask30.txt │ ├── exp_hypre_convdiff_nmax200_nmin10_ntask60.txt │ ├── hypre_parse_plot.sh │ ├── hypre_plot.py │ └── parse_tuning_results.py │ ├── scalapack │ ├── a.out_scalapck_ML_m20000_n20000_nodes256_core2_ntask5_nrun10_GPTune_oversubscribe_modelfit │ ├── a.out_scalapck_ML_m20000_n20000_nodes256_core2_ntask5_nrun10_GPTune_oversubscribe_nomodel │ ├── a.out_scalapck_ML_m20000_n20000_nodes256_core2_ntask5_nrun20_GPTune_oversubscribe_modelfit │ ├── a.out_scalapck_ML_m20000_n20000_nodes256_core2_ntask5_nrun20_GPTune_oversubscribe_nomodel │ ├── a.out_scalapck_ML_m20000_n20000_nodes256_core2_ntask5_nrun40_GPTune_oversubscribe_modelfit │ ├── a.out_scalapck_ML_m20000_n20000_nodes256_core2_ntask5_nrun40_GPTune_oversubscribe_nomodel │ ├── a.out_scalapck_ML_m40000_n40000_nodes64_core32_ntask10_nrun10_GPTune_oversubscribe │ ├── a.out_scalapck_ML_m40000_n40000_nodes64_core32_ntask10_nrun10_hpbandster_oversubscribe │ ├── a.out_scalapck_ML_m40000_n40000_nodes64_core32_ntask10_nrun10_opentuner_oversubscribe │ ├── a.out_scalapck_ML_m40000_n40000_nodes64_core32_ntask1_nrun100_GPTune_oversubscribe │ ├── line_colors.m │ ├── models_scalapack_mmax20000_nmax20000_nodes16_ntask5.pkl │ ├── models_scalapack_mmax20000_nmax20000_nodes16_ntask5.txt │ ├── parse_plot_perfmodel.sh │ ├── parse_plot_tunercompare.sh │ ├── pdsyevx_08K_L_V_01_32_NS10_tasks11.out │ ├── pdsyevx_08K_L_V_01_32_NS110_tasks1.out │ ├── pdsyevx_08K_L_V_01_32_NS20_tasks11.out │ ├── pdsyevx_08K_L_V_01_32_NS220_tasks1.out │ ├── plot_history_scalapack.m │ ├── plot_optimum_MLA.m │ ├── plot_optimum_MLA_40000_10tasks_10samples.m │ ├── plot_optimum_MLA_SYEVX.m │ ├── plot_optimum_MLAvsSingle_QR_40000_10tasks_10samples.m │ ├── plots │ │ ├── hist_tuners_scalapack_mmax20000_nmax20000_nodes16_ntask10_nrun10.pdf │ │ ├── hist_tuners_scalapack_mmax40000_nmax40000_nodes64_ntask10_nrun10.pdf │ │ ├── models_scalapack_mmax20000_nmax20000_nodes16_ntask5.pdf │ │ ├── tuners_scalapack_mmax20000_nmax20000_nodes16_ntask10_nrun10.pdf │ │ └── tuners_scalapack_mmax40000_nmax40000_nodes64_ntask10_nrun10.pdf │ ├── scalapack_MLA_optimum_gflops.eps │ ├── scalapack_MLA_optimum_time.eps │ ├── scalapack_parse_results.py │ ├── scalapack_plot_performancemodel.py │ ├── scalapack_plot_performancemodel_tex.py │ ├── scalapack_plot_tunercompare.py │ ├── scalapack_plot_tunercompare_tex.py │ ├── scalapack_qr_MLA_optimum_64nodes.eps │ ├── tuners_scalapack_mmax20000_nmax20000_nodes16_ntask10.pkl │ ├── tuners_scalapack_mmax20000_nmax20000_nodes16_ntask10.txt │ ├── tuners_scalapack_mmax40000_nmax40000_nodes64_ntask10.pkl │ └── tuners_scalapack_mmax40000_nmax40000_nodes64_ntask10.txt │ └── superlu_dist │ ├── a.out_superlu_MLA_MO_nodes8_cores32_nprocmin_pernode1_nrun80_GPTune_search_more_samples4 │ ├── a.out_superlu_MLA_SO_nodes32_cores32_nprocmin_pernode4_nrun20_GPTune │ ├── a.out_superlu_MLA_SO_nodes32_cores32_nprocmin_pernode4_nrun20_hpbandster │ ├── a.out_superlu_MLA_SO_nodes32_cores32_nprocmin_pernode4_nrun20_opentuner │ ├── a.out_superlu_single_MO_nodes8_cores32_nprocmin_pernode1_nrun80_GPTune_search_more_samples4 │ ├── a.out_superlu_single_SO(memory)_nodes8_cores32_nprocmin_pernode1_nrun80_GPTune │ ├── line_colors.m │ ├── pareto_superlu.eps │ ├── pareto_superlu_MLA.eps │ ├── parse_plot.sh │ ├── plot_pareto.m │ ├── plot_pareto_MLA.m │ ├── plots │ ├── hist_tuners_superlu_dist_nodes32_ntask7_nrun20.pdf │ └── tuners_superlu_dist_nodes32_ntask7_nrun20.pdf │ ├── superlu_dist_parse_results.py │ ├── superlu_dist_plot_tunercompare.py │ ├── superlu_dist_plot_tunercompare_tex.py │ ├── tuners_superlu_dist_nodes32_ntask7.pkl │ └── tuners_superlu_dist_nodes32_ntask7.txt ├── flake.lock ├── flake.nix ├── gptuneclcm ├── lcm.c └── lcm.h ├── patches ├── GPy │ ├── choleskies.py │ ├── coregionalize.py │ └── stationary.py ├── autotune │ └── problem.py ├── opentuner │ └── manipulator.py ├── parmetis │ ├── CMakeLists.txt │ └── metis_64bit.h ├── ptscotch │ ├── common.c │ └── common.h └── scikit-optimize │ └── space.py ├── pyproject.toml ├── requirements.txt ├── requirements_crusher.txt ├── requirements_frontier.txt ├── requirements_intel.txt ├── requirements_lite.txt ├── requirements_mac.txt ├── requirements_perlmutter.txt ├── requirements_summit.txt ├── requirements_tmp.txt ├── run_env.sh ├── run_env_no_mpi.sh ├── setup.py └── todo.org /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doc/GPTune_UsersGuide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/Doc/GPTune_UsersGuide.pdf -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/Dockerfile -------------------------------------------------------------------------------- /FAQ/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/FAQ/README.md -------------------------------------------------------------------------------- /GPTune/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/GPTune/__init__.py -------------------------------------------------------------------------------- /GPTune/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/GPTune/__version__.py -------------------------------------------------------------------------------- /GPTune/callcgp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/GPTune/callcgp.py -------------------------------------------------------------------------------- /GPTune/callhpbandster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/GPTune/callhpbandster.py -------------------------------------------------------------------------------- /GPTune/callhybrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/GPTune/callhybrid.py -------------------------------------------------------------------------------- /GPTune/callopentuner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/GPTune/callopentuner.py -------------------------------------------------------------------------------- /GPTune/computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/GPTune/computer.py -------------------------------------------------------------------------------- /GPTune/crowdtune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/GPTune/crowdtune.py -------------------------------------------------------------------------------- /GPTune/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/GPTune/data.py -------------------------------------------------------------------------------- /GPTune/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/GPTune/database.py -------------------------------------------------------------------------------- /GPTune/gptune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/GPTune/gptune.py -------------------------------------------------------------------------------- /GPTune/lcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/GPTune/lcm.py -------------------------------------------------------------------------------- /GPTune/mcmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/GPTune/mcmc.py -------------------------------------------------------------------------------- /GPTune/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/GPTune/model.py -------------------------------------------------------------------------------- /GPTune/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/GPTune/options.py -------------------------------------------------------------------------------- /GPTune/problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/GPTune/problem.py -------------------------------------------------------------------------------- /GPTune/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/GPTune/sample.py -------------------------------------------------------------------------------- /GPTune/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/GPTune/search.py -------------------------------------------------------------------------------- /GPTune_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/GPTune_icon.png -------------------------------------------------------------------------------- /Install_decision_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/Install_decision_tree.png -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/README.md -------------------------------------------------------------------------------- /TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /example_scripts/config_butterflfypack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/config_butterflfypack.sh -------------------------------------------------------------------------------- /example_scripts/config_butterflypack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/config_butterflypack.sh -------------------------------------------------------------------------------- /example_scripts/config_cleanlinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/config_cleanlinux.sh -------------------------------------------------------------------------------- /example_scripts/config_cori.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/config_cori.sh -------------------------------------------------------------------------------- /example_scripts/config_crusher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/config_crusher.sh -------------------------------------------------------------------------------- /example_scripts/config_ex3_simula.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/config_ex3_simula.sh -------------------------------------------------------------------------------- /example_scripts/config_ex3_simula_openmpi415.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/config_ex3_simula_openmpi415.sh -------------------------------------------------------------------------------- /example_scripts/config_frontier.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/config_frontier.sh -------------------------------------------------------------------------------- /example_scripts/config_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/config_linux.sh -------------------------------------------------------------------------------- /example_scripts/config_macbook.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/config_macbook.zsh -------------------------------------------------------------------------------- /example_scripts/config_no_mpi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/config_no_mpi.sh -------------------------------------------------------------------------------- /example_scripts/config_perlmutter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/config_perlmutter.sh -------------------------------------------------------------------------------- /example_scripts/config_strumpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/config_strumpack.sh -------------------------------------------------------------------------------- /example_scripts/config_summit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/config_summit.sh -------------------------------------------------------------------------------- /example_scripts/config_tr4_workstation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/config_tr4_workstation.sh -------------------------------------------------------------------------------- /example_scripts/config_wsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/config_wsl.sh -------------------------------------------------------------------------------- /example_scripts/log_monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/log_monitor.sh -------------------------------------------------------------------------------- /example_scripts/run_macbook_catalina.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/run_macbook_catalina.zsh -------------------------------------------------------------------------------- /example_scripts/run_ppopp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/run_ppopp.sh -------------------------------------------------------------------------------- /example_scripts/run_wsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/run_wsl.sh -------------------------------------------------------------------------------- /example_scripts/travis_build_gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/travis_build_gcc.sh -------------------------------------------------------------------------------- /example_scripts/travis_build_openmpi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/travis_build_openmpi.sh -------------------------------------------------------------------------------- /example_scripts/travis_build_python2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/travis_build_python2.sh -------------------------------------------------------------------------------- /example_scripts/travis_build_python3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/example_scripts/travis_build_python3.sh -------------------------------------------------------------------------------- /examples/BLIS/.gptune/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/BLIS/.gptune/meta.json -------------------------------------------------------------------------------- /examples/BLIS/blisv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/BLIS/blisv2.py -------------------------------------------------------------------------------- /examples/BLIS/output-jobs-and-subjobs-301-304.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/BLIS/output-jobs-and-subjobs-301-304.csv -------------------------------------------------------------------------------- /examples/BLIS/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/BLIS/run_examples.sh -------------------------------------------------------------------------------- /examples/ButterflyPACK/butterflypack_RFcavity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ButterflyPACK/butterflypack_RFcavity.py -------------------------------------------------------------------------------- /examples/ButterflyPACK/butterflypack_RFcavity_multimode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ButterflyPACK/butterflypack_RFcavity_multimode.py -------------------------------------------------------------------------------- /examples/ButterflyPACK/butterflypack_RFcavity_multimode_HO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ButterflyPACK/butterflypack_RFcavity_multimode_HO.py -------------------------------------------------------------------------------- /examples/ButterflyPACK/butterflypack_RFcavity_multimode_HO_plotmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ButterflyPACK/butterflypack_RFcavity_multimode_HO_plotmodel.py -------------------------------------------------------------------------------- /examples/ButterflyPACK/butterflypack_RFcavity_multimode_HO_simplex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ButterflyPACK/butterflypack_RFcavity_multimode_HO_simplex.py -------------------------------------------------------------------------------- /examples/ButterflyPACK/butterflypack_RFcavity_multimode_simplex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ButterflyPACK/butterflypack_RFcavity_multimode_simplex.py -------------------------------------------------------------------------------- /examples/ButterflyPACK/butterflypack_ie2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ButterflyPACK/butterflypack_ie2d.py -------------------------------------------------------------------------------- /examples/ButterflyPACK/postmergemode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ButterflyPACK/postmergemode.py -------------------------------------------------------------------------------- /examples/ButterflyPACK/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ButterflyPACK/run_examples.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/Branin/branin_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/Branin/branin_tuning.py -------------------------------------------------------------------------------- /examples/CrowdTuning/Branin/run_experiments_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/Branin/run_experiments_mac.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/Branin/setup_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/Branin/setup_tasks.py -------------------------------------------------------------------------------- /examples/CrowdTuning/Branin/tasklist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/Branin/tasklist.json -------------------------------------------------------------------------------- /examples/CrowdTuning/Demo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/Demo/README -------------------------------------------------------------------------------- /examples/CrowdTuning/Demo/analyze_tuning_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/Demo/analyze_tuning_result.py -------------------------------------------------------------------------------- /examples/CrowdTuning/Demo/demo_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/Demo/demo_tuning.py -------------------------------------------------------------------------------- /examples/CrowdTuning/Demo/demo_tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/Demo/demo_tutorial.py -------------------------------------------------------------------------------- /examples/CrowdTuning/Demo/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/Demo/env.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/Demo/run_experiments_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/Demo/run_experiments_linux.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/Demo/run_experiments_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/Demo/run_experiments_mac.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/Demo/run_tutorial_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/Demo/run_tutorial_linux.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/Demo/run_tutorial_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/Demo/run_tutorial_mac.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/Hypre/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/Hypre/README -------------------------------------------------------------------------------- /examples/CrowdTuning/Hypre/analyze_tuning_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/Hypre/analyze_tuning_result.py -------------------------------------------------------------------------------- /examples/CrowdTuning/Hypre/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/Hypre/env.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/Hypre/hypre_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/Hypre/hypre_full.py -------------------------------------------------------------------------------- /examples/CrowdTuning/Hypre/hypre_reduced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/Hypre/hypre_reduced.py -------------------------------------------------------------------------------- /examples/CrowdTuning/Hypre/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/Hypre/run_examples.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/Hypre/sensitivity_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/Hypre/sensitivity_analysis.py -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/README -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/analyze_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/analyze_solution.py -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/big_task_haswell_64nodes_2048mpis/nimrod_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/big_task_haswell_64nodes_2048mpis/nimrod_tuning.py -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/big_task_haswell_64nodes_2048mpis/nimrod_tuning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/big_task_haswell_64nodes_2048mpis/nimrod_tuning.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/big_task_haswell_64nodes_2048mpis/run_nimrod_experiment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/big_task_haswell_64nodes_2048mpis/run_nimrod_experiment.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/crowdtuning_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/crowdtuning_api.py -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/env.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/gnu_craympich_haswell/nimrod_SLA_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/gnu_craympich_haswell/nimrod_SLA_baseline.py -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/gnu_craympich_haswell/nimrod_SLA_baseline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/gnu_craympich_haswell/nimrod_SLA_baseline.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/gnu_craympich_haswell/nimrod_TLA_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/gnu_craympich_haswell/nimrod_TLA_base.py -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/gnu_craympich_haswell/nimrod_TLA_base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/gnu_craympich_haswell/nimrod_TLA_base.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/gnu_craympich_haswell/run_nimrod_SLA_baseline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/gnu_craympich_haswell/run_nimrod_SLA_baseline.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/gnu_craympich_haswell/run_nimrod_TLA_base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/gnu_craympich_haswell/run_nimrod_TLA_base.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/medium_task_haswell_64nodes_2048mpis/nimrod_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/medium_task_haswell_64nodes_2048mpis/nimrod_tuning.py -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/medium_task_haswell_64nodes_2048mpis/nimrod_tuning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/medium_task_haswell_64nodes_2048mpis/nimrod_tuning.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/medium_task_haswell_64nodes_2048mpis/run_nimrod_experiment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/medium_task_haswell_64nodes_2048mpis/run_nimrod_experiment.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/medium_task_knl_64nodes_2048mpis/nimrod_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/medium_task_knl_64nodes_2048mpis/nimrod_tuning.py -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/medium_task_knl_64nodes_2048mpis/nimrod_tuning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/medium_task_knl_64nodes_2048mpis/nimrod_tuning.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/medium_task_knl_64nodes_2048mpis/run_nimrod_experiment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/medium_task_knl_64nodes_2048mpis/run_nimrod_experiment.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/medium_task_knl_64nodes_4352mpis/nimrod_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/medium_task_knl_64nodes_4352mpis/nimrod_tuning.py -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/medium_task_knl_64nodes_4352mpis/nimrod_tuning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/medium_task_knl_64nodes_4352mpis/nimrod_tuning.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/medium_task_knl_64nodes_4352mpis/run_nimrod_experiment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/medium_task_knl_64nodes_4352mpis/run_nimrod_experiment.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/NIMROD/sensitivity_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/NIMROD/sensitivity_analysis.py -------------------------------------------------------------------------------- /examples/CrowdTuning/ScaLAPACK-PDGEQRF/run_experiments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/ScaLAPACK-PDGEQRF/run_experiments.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/ScaLAPACK-PDGEQRF/scalapack_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/ScaLAPACK-PDGEQRF/scalapack_tuning.py -------------------------------------------------------------------------------- /examples/CrowdTuning/ScaLAPACK-PDGEQRF/scalapack_tuning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/ScaLAPACK-PDGEQRF/scalapack_tuning.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/SuperLU_DIST/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/SuperLU_DIST/README -------------------------------------------------------------------------------- /examples/CrowdTuning/SuperLU_DIST/analyze_manual_result_Si5H12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/SuperLU_DIST/analyze_manual_result_Si5H12.py -------------------------------------------------------------------------------- /examples/CrowdTuning/SuperLU_DIST/analyze_tuning_result_H2O.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/SuperLU_DIST/analyze_tuning_result_H2O.py -------------------------------------------------------------------------------- /examples/CrowdTuning/SuperLU_DIST/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/SuperLU_DIST/env.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/SuperLU_DIST/run_manual_cori.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/SuperLU_DIST/run_manual_cori.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/SuperLU_DIST/run_tuning_cori.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/SuperLU_DIST/run_tuning_cori.sh -------------------------------------------------------------------------------- /examples/CrowdTuning/SuperLU_DIST/sensitivity_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/SuperLU_DIST/sensitivity_analysis.py -------------------------------------------------------------------------------- /examples/CrowdTuning/SuperLU_DIST/superlu_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/SuperLU_DIST/superlu_base.py -------------------------------------------------------------------------------- /examples/CrowdTuning/SuperLU_DIST/superlu_dist: -------------------------------------------------------------------------------- 1 | ../../SuperLU_DIST/superlu_dist -------------------------------------------------------------------------------- /examples/CrowdTuning/SuperLU_DIST/superlu_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/SuperLU_DIST/superlu_manual.py -------------------------------------------------------------------------------- /examples/CrowdTuning/SuperLU_DIST/superlu_tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/CrowdTuning/SuperLU_DIST/superlu_tuning.py -------------------------------------------------------------------------------- /examples/GPTune-Demo-MO/.gptune/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo-MO/.gptune/meta.json -------------------------------------------------------------------------------- /examples/GPTune-Demo-MO/.gptune/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo-MO/.gptune/model.json -------------------------------------------------------------------------------- /examples/GPTune-Demo-MO/BNH_MO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo-MO/BNH_MO.py -------------------------------------------------------------------------------- /examples/GPTune-Demo-MO/BNH_SO_y1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo-MO/BNH_SO_y1.py -------------------------------------------------------------------------------- /examples/GPTune-Demo-MO/BNH_SO_y2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo-MO/BNH_SO_y2.py -------------------------------------------------------------------------------- /examples/GPTune-Demo-MO/DTLZ1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo-MO/DTLZ1.py -------------------------------------------------------------------------------- /examples/GPTune-Demo-MO/OSY_MO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo-MO/OSY_MO.py -------------------------------------------------------------------------------- /examples/GPTune-Demo-MO/OSY_MO_constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo-MO/OSY_MO_constraint.py -------------------------------------------------------------------------------- /examples/GPTune-Demo-MO/OSY_SO_y1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo-MO/OSY_SO_y1.py -------------------------------------------------------------------------------- /examples/GPTune-Demo-MO/OSY_SO_y2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo-MO/OSY_SO_y2.py -------------------------------------------------------------------------------- /examples/GPTune-Demo-MO/RC_beam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo-MO/RC_beam.py -------------------------------------------------------------------------------- /examples/GPTune-Demo-MO/TNK_MO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo-MO/TNK_MO.py -------------------------------------------------------------------------------- /examples/GPTune-Demo-MO/TNK_MO_constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo-MO/TNK_MO_constraint.py -------------------------------------------------------------------------------- /examples/GPTune-Demo-MO/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo-MO/run_examples.sh -------------------------------------------------------------------------------- /examples/GPTune-Demo/.gptune/configs/cori.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/.gptune/configs/cori.json -------------------------------------------------------------------------------- /examples/GPTune-Demo/.gptune/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/.gptune/meta.json -------------------------------------------------------------------------------- /examples/GPTune-Demo/analysis_TLA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/analysis_TLA.py -------------------------------------------------------------------------------- /examples/GPTune-Demo/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/demo.py -------------------------------------------------------------------------------- /examples/GPTune-Demo/demo_MB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/demo_MB.py -------------------------------------------------------------------------------- /examples/GPTune-Demo/demo_TLA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/demo_TLA.py -------------------------------------------------------------------------------- /examples/GPTune-Demo/demo_TLA_LCM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/demo_TLA_LCM.py -------------------------------------------------------------------------------- /examples/GPTune-Demo/demo_TLA_WS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/demo_TLA_WS.py -------------------------------------------------------------------------------- /examples/GPTune-Demo/demo_TLA_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/demo_TLA_base.py -------------------------------------------------------------------------------- /examples/GPTune-Demo/demo_comparetuners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/demo_comparetuners.py -------------------------------------------------------------------------------- /examples/GPTune-Demo/demo_model_reuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/demo_model_reuse.py -------------------------------------------------------------------------------- /examples/GPTune-Demo/demo_parallelperformance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/demo_parallelperformance.py -------------------------------------------------------------------------------- /examples/GPTune-Demo/demo_perf_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/demo_perf_model.py -------------------------------------------------------------------------------- /examples/GPTune-Demo/demo_wgp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/demo_wgp.py -------------------------------------------------------------------------------- /examples/GPTune-Demo/gptune.db/GPTune-Demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/gptune.db/GPTune-Demo.json -------------------------------------------------------------------------------- /examples/GPTune-Demo/merge_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/merge_db.py -------------------------------------------------------------------------------- /examples/GPTune-Demo/model_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/model_comparison.py -------------------------------------------------------------------------------- /examples/GPTune-Demo/model_comparison_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/model_comparison_updated.py -------------------------------------------------------------------------------- /examples/GPTune-Demo/model_comparison_updated_LCM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/model_comparison_updated_LCM.py -------------------------------------------------------------------------------- /examples/GPTune-Demo/model_comparison_updated_superlu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/model_comparison_updated_superlu.py -------------------------------------------------------------------------------- /examples/GPTune-Demo/model_search_compare.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/model_search_compare.pdf -------------------------------------------------------------------------------- /examples/GPTune-Demo/run_cori_TLA_experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/run_cori_TLA_experiments.py -------------------------------------------------------------------------------- /examples/GPTune-Demo/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/run_examples.sh -------------------------------------------------------------------------------- /examples/GPTune-Demo/test_GP_hodlr_vs_superlu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/GPTune-Demo/test_GP_hodlr_vs_superlu.sh -------------------------------------------------------------------------------- /examples/Hypre/.gptune/configs/cori-haswell-openmpi-gnu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/.gptune/configs/cori-haswell-openmpi-gnu.json -------------------------------------------------------------------------------- /examples/Hypre/.gptune/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/.gptune/meta.json -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_31_66_94_1_12_1_0.8706226937018862_0.030350226650719115_8_6_0_5_3_0_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_31_66_94_1_12_1_0.8706226937018862_0.030350226650719115_8_6_0_5_3_0_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_31_66_94_1_13_1_0.1786567432759708_0.5661492233739168_6_4_16_5_1_12_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_31_66_94_1_13_1_0.1786567432759708_0.5661492233739168_6_4_16_5_1_12_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_31_66_94_1_1_8_0.0008360352116848944_0.31607731731990235_10_10_-1_5_2_8_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_31_66_94_1_1_8_0.0008360352116848944_0.31607731731990235_10_10_-1_5_2_8_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_31_66_94_1_1_9_0.6241568773907653_0.5475470235442839_2_8_-1_6_5_3_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_31_66_94_1_1_9_0.6241568773907653_0.5475470235442839_2_8_-1_6_5_3_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_31_66_94_1_7_2_0.11884460109075828_0.16624194876259174_6_1_18_6_1_0_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_31_66_94_1_7_2_0.11884460109075828_0.16624194876259174_6_1_18_6_1_0_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_31_66_94_1_9_1_0.16291880215916293_0.8358055009507052_5_0_8_5_2_0_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_31_66_94_1_9_1_0.16291880215916293_0.8358055009507052_5_0_8_5_2_0_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_31_66_94_3_1_5_0.6257489728136427_0.9772769885778221_1_1_0_9_1_6_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_31_66_94_3_1_5_0.6257489728136427_0.9772769885778221_1_1_0_9_1_6_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_31_66_94_4_2_1_0.6054866843882899_0.6023586227610518_9_8_16_9_3_6_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_31_66_94_4_2_1_0.6054866843882899_0.6023586227610518_9_8_16_9_3_6_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_31_66_94_4_3_1_0.47149128874511825_0.24216979752721382_11_8_0_5_0_12_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_31_66_94_4_3_1_0.47149128874511825_0.24216979752721382_11_8_0_5_0_12_0 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_31_66_94_6_1_2_0.5083367635245771_0.34300670279715395_11_0_0_6_4_8_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_31_66_94_6_1_2_0.5083367635245771_0.34300670279715395_11_0_0_6_4_8_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_34_47_79_12_1_1_0.7735605825519903_0.5066937796235006_9_2_-1_9_4_8_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_34_47_79_12_1_1_0.7735605825519903_0.5066937796235006_9_2_-1_9_4_8_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_34_47_79_15_1_1_0.12770178675720142_0.3027286091447501_11_0_16_6_2_4_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_34_47_79_15_1_1_0.12770178675720142_0.3027286091447501_11_0_16_6_2_4_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_34_47_79_1_11_1_0.6573228738519286_0.09732880864964209_1_1_8_5_4_8_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_34_47_79_1_11_1_0.6573228738519286_0.09732880864964209_1_1_8_5_4_8_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_34_47_79_1_15_1_0.04775125685783855_0.460420694140662_7_8_-1_6_2_6_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_34_47_79_1_15_1_0.04775125685783855_0.460420694140662_7_8_-1_6_2_6_0 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_34_47_79_1_3_3_0.4223242085336411_0.6740323416893574_5_2_8_8_0_12_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_34_47_79_1_3_3_0.4223242085336411_0.6740323416893574_5_2_8_8_0_12_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_34_47_79_1_3_4_0.5523608760571198_0.984479120734407_6_0_8_7_4_3_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_34_47_79_1_3_4_0.5523608760571198_0.984479120734407_6_0_8_7_4_3_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_34_47_79_2_1_6_0.6734755815935025_0.466708693454774_6_3_8_6_0_6_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_34_47_79_2_1_6_0.6734755815935025_0.466708693454774_6_3_8_6_0_6_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_34_47_79_2_5_1_0.6625405959072508_0.3761772360152143_12_10_-1_9_0_8_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_34_47_79_2_5_1_0.6625405959072508_0.3761772360152143_12_10_-1_9_0_8_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_34_47_79_3_1_3_0.7757338203920272_0.5301449501104024_1_8_6_9_0_4_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_34_47_79_3_1_3_0.7757338203920272_0.5301449501104024_1_8_6_9_0_4_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_34_47_79_3_1_5_0.0445600376369228_0.27687861690791676_7_2_8_7_2_3_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_34_47_79_3_1_5_0.0445600376369228_0.27687861690791676_7_2_8_7_2_3_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_57_32_42_14_1_1_0.6113337811825266_0.017276298669388845_7_2_8_9_2_0_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_57_32_42_14_1_1_0.6113337811825266_0.017276298669388845_7_2_8_9_2_0_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_57_32_42_1_1_11_0.1368938372127989_0.20377887475366088_8_3_8_6_3_12_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_57_32_42_1_1_11_0.1368938372127989_0.20377887475366088_8_3_8_6_3_12_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_57_32_42_1_3_3_0.4223242085336411_0.6740323416893574_5_2_8_8_0_12_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_57_32_42_1_3_3_0.4223242085336411_0.6740323416893574_5_2_8_8_0_12_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_57_32_42_1_3_4_0.5523608760571198_0.984479120734407_6_0_8_7_4_3_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_57_32_42_1_3_4_0.5523608760571198_0.984479120734407_6_0_8_7_4_3_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_57_32_42_1_4_2_0.7644133010103586_0.737699905858905_3_10_0_9_2_12_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_57_32_42_1_4_2_0.7644133010103586_0.737699905858905_3_10_0_9_2_12_0 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_57_32_42_1_5_3_0.2611277191647153_0.0956293947161909_3_0_8_5_1_12_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_57_32_42_1_5_3_0.2611277191647153_0.0956293947161909_3_0_8_5_1_12_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_57_32_42_2_1_6_0.6734755815935025_0.466708693454774_6_3_8_6_0_6_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_57_32_42_2_1_6_0.6734755815935025_0.466708693454774_6_3_8_6_0_6_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_57_32_42_3_1_3_0.7757338203920272_0.5301449501104024_1_8_6_9_0_4_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_57_32_42_3_1_3_0.7757338203920272_0.5301449501104024_1_8_6_9_0_4_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_57_32_42_3_1_5_0.0445600376369228_0.27687861690791676_7_2_8_7_2_3_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_57_32_42_3_1_5_0.0445600376369228_0.27687861690791676_7_2_8_7_2_3_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_57_32_42_7_2_1_0.2375677875869095_0.4238296431012244_9_0_0_9_0_6_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_57_32_42_7_2_1_0.2375677875869095_0.4238296431012244_9_0_0_9_0_6_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_88_25_71_15_1_1_0.7846958549984868_0.5352779446570058_12_2_6_5_0_6_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_88_25_71_15_1_1_0.7846958549984868_0.5352779446570058_12_2_6_5_0_6_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_88_25_71_1_12_1_0.07418112394790449_0.8695780224781006_9_4_0_6_0_3_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_88_25_71_1_12_1_0.07418112394790449_0.8695780224781006_9_4_0_6_0_3_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_88_25_71_1_13_1_0.1786567432759708_0.5661492233739168_6_4_16_5_1_12_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_88_25_71_1_13_1_0.1786567432759708_0.5661492233739168_6_4_16_5_1_12_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_88_25_71_1_1_11_0.24645943780671467_0.5941792811694862_2_1_-1_8_5_6_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_88_25_71_1_1_11_0.24645943780671467_0.5941792811694862_2_1_-1_8_5_6_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_88_25_71_1_1_14_0.8461965100981036_0.5316954086775725_10_6_-1_5_1_5_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_88_25_71_1_1_14_0.8461965100981036_0.5316954086775725_10_6_-1_5_1_5_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_88_25_71_1_1_9_0.9289500333042335_0.38431336955020506_11_10_-1_9_1_3_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_88_25_71_1_1_9_0.9289500333042335_0.38431336955020506_11_10_-1_9_1_3_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_88_25_71_1_7_2_0.11884460109075828_0.16624194876259174_6_1_18_6_1_0_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_88_25_71_1_7_2_0.11884460109075828_0.16624194876259174_6_1_18_6_1_0_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_88_25_71_3_1_5_0.6257489728136427_0.9772769885778221_1_1_0_9_1_6_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_88_25_71_3_1_5_0.6257489728136427_0.9772769885778221_1_1_0_9_1_6_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_88_25_71_4_2_1_0.6054866843882899_0.6023586227610518_9_8_16_9_3_6_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_88_25_71_4_2_1_0.6054866843882899_0.6023586227610518_9_8_16_9_3_6_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_88_25_71_6_1_2_0.5083367635245771_0.34300670279715395_11_0_0_6_4_8_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/GPTune/0/ijoutput_88_25_71_6_1_2_0.5083367635245771_0.34300670279715395_11_0_0_6_4_8_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_31_66_94_1_10_1_0.03304998079587085_0.8938872128714805_8_6_-1_5_4_5_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_31_66_94_1_10_1_0.03304998079587085_0.8938872128714805_8_6_-1_5_4_5_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_31_66_94_1_14_1_0.11269160128205191_0.1915264540025874_4_1_0_5_5_6_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_31_66_94_1_14_1_0.11269160128205191_0.1915264540025874_4_1_0_5_5_6_0 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_31_66_94_1_2_5_0.962273670780013_0.7544272374420985_10_0_-1_8_1_4_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_31_66_94_1_2_5_0.962273670780013_0.7544272374420985_10_0_-1_8_1_4_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_31_66_94_1_3_5_0.5762229602589896_0.586236215574675_3_6_8_5_5_6_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_31_66_94_1_3_5_0.5762229602589896_0.586236215574675_3_6_8_5_5_6_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_31_66_94_1_7_2_0.4262742702061887_0.5873019297437576_5_2_-1_5_3_0_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_31_66_94_1_7_2_0.4262742702061887_0.5873019297437576_5_2_-1_5_3_0_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_31_66_94_2_2_2_0.7253993056183138_0.1179923165970348_5_3_6_9_5_3_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_31_66_94_2_2_2_0.7253993056183138_0.1179923165970348_5_3_6_9_5_3_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_31_66_94_2_5_1_0.5272279068448781_0.9911428452027263_12_0_-1_5_1_8_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_31_66_94_2_5_1_0.5272279068448781_0.9911428452027263_12_0_-1_5_1_8_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_31_66_94_3_1_3_0.7394389621716647_0.7716694709830055_11_3_18_6_1_0_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_31_66_94_3_1_3_0.7394389621716647_0.7716694709830055_11_3_18_6_1_0_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_31_66_94_4_3_1_0.46578978130150683_0.835023861347936_11_3_18_6_0_6_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_31_66_94_4_3_1_0.46578978130150683_0.835023861347936_11_3_18_6_0_6_0 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_31_66_94_6_1_2_0.8717835150108767_0.7770644732996782_11_10_8_8_1_5_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_31_66_94_6_1_2_0.8717835150108767_0.7770644732996782_11_10_8_8_1_5_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_34_47_79_12_1_1_0.28413927872949574_0.5084529861079755_9_6_18_5_2_8_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_34_47_79_12_1_1_0.28413927872949574_0.5084529861079755_9_6_18_5_2_8_0 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_34_47_79_12_1_1_0.6388467856512254_0.5849943662812845_8_3_-1_8_3_0_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_34_47_79_12_1_1_0.6388467856512254_0.5849943662812845_8_3_-1_8_3_0_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_34_47_79_1_12_1_0.5832526068709329_0.30903546784695446_2_3_18_6_0_6_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_34_47_79_1_12_1_0.5832526068709329_0.30903546784695446_2_3_18_6_0_6_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_34_47_79_1_1_10_0.0978955616538455_0.9575546341447362_8_10_6_9_3_6_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_34_47_79_1_1_10_0.0978955616538455_0.9575546341447362_8_10_6_9_3_6_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_34_47_79_1_1_11_0.4658369967978192_0.8485241257185804_7_3_18_7_1_0_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_34_47_79_1_1_11_0.4658369967978192_0.8485241257185804_7_3_18_7_1_0_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_34_47_79_1_5_2_0.63022567813018_0.7509862843442926_7_0_6_5_3_5_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_34_47_79_1_5_2_0.63022567813018_0.7509862843442926_7_0_6_5_3_5_0 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_34_47_79_4_2_1_0.046177509616755597_0.4394488679554214_1_1_8_8_2_5_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_34_47_79_4_2_1_0.046177509616755597_0.4394488679554214_1_1_8_8_2_5_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_34_47_79_4_3_1_0.27364764426453336_0.9440350868247188_12_10_8_6_4_5_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_34_47_79_4_3_1_0.27364764426453336_0.9440350868247188_12_10_8_6_4_5_0 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_34_47_79_6_1_2_0.32670459472435753_0.9160834366411598_6_3_8_5_4_4_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_34_47_79_6_1_2_0.32670459472435753_0.9160834366411598_6_3_8_5_4_4_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_34_47_79_7_1_2_0.8591147729458372_0.33580877949914856_1_3_8_7_1_8_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_34_47_79_7_1_2_0.8591147729458372_0.33580877949914856_1_3_8_7_1_8_0 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_57_32_42_1_14_1_0.2738264647320059_0.5013572331021305_7_8_18_8_4_0_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_57_32_42_1_14_1_0.2738264647320059_0.5013572331021305_7_8_18_8_4_0_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_57_32_42_1_1_10_0.9575865410252079_0.6645739147612177_4_6_18_9_2_6_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_57_32_42_1_1_10_0.9575865410252079_0.6645739147612177_4_6_18_9_2_6_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_57_32_42_1_1_9_0.08448745428794813_0.4354171095795265_3_3_16_8_3_8_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_57_32_42_1_1_9_0.08448745428794813_0.4354171095795265_3_3_16_8_3_8_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_57_32_42_1_2_7_0.9929590776652316_0.4903038261092063_3_10_16_6_4_4_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_57_32_42_1_2_7_0.9929590776652316_0.4903038261092063_3_10_16_6_4_4_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_57_32_42_1_3_3_0.5534460590475712_0.9465260019097834_5_3_8_5_0_0_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_57_32_42_1_3_3_0.5534460590475712_0.9465260019097834_5_3_8_5_0_0_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_57_32_42_1_3_4_0.013863563376322219_0.2970056653073466_4_6_8_8_4_0_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_57_32_42_1_3_4_0.013863563376322219_0.2970056653073466_4_6_8_8_4_0_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_57_32_42_1_4_2_0.8935768888139404_0.11532377544002548_8_8_-1_8_2_0_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_57_32_42_1_4_2_0.8935768888139404_0.11532377544002548_8_8_-1_8_2_0_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_57_32_42_2_1_4_0.9468285715362186_0.7891848314110083_6_6_16_8_2_4_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_57_32_42_2_1_4_0.9468285715362186_0.7891848314110083_6_6_16_8_2_4_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_57_32_42_2_2_2_0.39777708868479367_0.35491101640963474_6_6_8_6_5_12_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_57_32_42_2_2_2_0.39777708868479367_0.35491101640963474_6_6_8_6_5_12_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_57_32_42_5_1_2_0.5030592896036727_0.589610643889302_4_0_18_5_3_5_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_57_32_42_5_1_2_0.5030592896036727_0.589610643889302_4_0_18_5_3_5_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_88_25_71_1_11_1_0.5107755337767157_0.5311989370723254_12_10_8_8_3_8_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_88_25_71_1_11_1_0.5107755337767157_0.5311989370723254_12_10_8_8_3_8_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_88_25_71_1_12_1_0.3373968365049742_0.8369126846948827_7_10_6_7_3_0_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_88_25_71_1_12_1_0.3373968365049742_0.8369126846948827_7_10_6_7_3_0_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_88_25_71_1_12_1_0.6401574850017849_0.8422500136069557_4_8_0_6_3_6_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_88_25_71_1_12_1_0.6401574850017849_0.8422500136069557_4_8_0_6_3_6_0 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_88_25_71_1_1_15_0.22292906052807837_0.7692897248784615_4_2_8_8_4_8_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_88_25_71_1_1_15_0.22292906052807837_0.7692897248784615_4_2_8_8_4_8_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_88_25_71_1_5_2_0.24337487104021072_0.7334468561000268_6_10_8_9_0_3_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_88_25_71_1_5_2_0.24337487104021072_0.7334468561000268_6_10_8_9_0_3_0 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_88_25_71_2_1_5_0.8176425896376692_0.47961881156358177_5_2_6_8_4_12_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_88_25_71_2_1_5_0.8176425896376692_0.47961881156358177_5_2_6_8_4_12_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_88_25_71_2_4_1_0.703426468101961_0.4697636617756057_3_1_-1_5_1_0_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_88_25_71_2_4_1_0.703426468101961_0.4697636617756057_3_1_-1_5_1_0_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_88_25_71_3_2_2_0.25566118967897467_0.3948349269674992_3_6_6_8_1_8_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_88_25_71_3_2_2_0.25566118967897467_0.3948349269674992_3_6_6_8_1_8_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_88_25_71_4_1_3_0.05792171110494604_0.3830474369262884_10_3_18_6_0_6_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_88_25_71_4_1_3_0.05792171110494604_0.3830474369262884_10_3_18_6_0_6_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_88_25_71_8_1_1_0.36355513196097144_0.3432244553685593_3_6_8_7_5_6_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/hpbandster/0/ijoutput_88_25_71_8_1_1_0.36355513196097144_0.3432244553685593_3_6_8_7_5_6_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_31_66_94_3_1_5_0.23714033350704422_0.6248871901179123_7_2_8_7_2_3_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_31_66_94_3_1_5_0.23714033350704422_0.6248871901179123_7_2_8_7_2_3_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_31_66_94_3_1_5_0.23714033350704422_0.6248871901179123_7_6_8_7_2_3_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_31_66_94_3_1_5_0.23714033350704422_0.6248871901179123_7_6_8_7_2_3_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_31_66_94_3_1_5_0.23714033350704422_0.6248871901179123_7_6_8_7_2_6_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_31_66_94_3_1_5_0.23714033350704422_0.6248871901179123_7_6_8_7_2_6_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_31_66_94_3_1_5_0.23714033350704422_0.6248871901179123_7_6_8_7_4_6_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_31_66_94_3_1_5_0.23714033350704422_0.6248871901179123_7_6_8_7_4_6_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_31_66_94_3_1_5_0.23714033350704422_0.9093144221477598_7_6_8_7_2_3_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_31_66_94_3_1_5_0.23714033350704422_0.9093144221477598_7_6_8_7_2_3_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_31_66_94_3_1_5_0.33894322398390264_0.09866989779021462_7_6_8_7_2_3_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_31_66_94_3_1_5_0.33894322398390264_0.09866989779021462_7_6_8_7_2_3_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_31_66_94_3_1_5_0.33894322398390264_0.09866989779021462_7_8_8_7_2_3_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_31_66_94_3_1_5_0.33894322398390264_0.09866989779021462_7_8_8_7_2_3_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_31_66_94_3_1_5_0.33894322398390264_0.1531280679091015_7_6_8_7_2_3_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_31_66_94_3_1_5_0.33894322398390264_0.1531280679091015_7_6_8_7_2_3_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_31_66_94_3_1_5_0.33894322398390264_0.6248871901179123_7_6_8_7_2_3_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_31_66_94_3_1_5_0.33894322398390264_0.6248871901179123_7_6_8_7_2_3_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_31_66_94_3_1_5_0.4651055017203902_0.09866989779021462_7_6_8_7_2_3_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_31_66_94_3_1_5_0.4651055017203902_0.09866989779021462_7_6_8_7_2_3_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_10_0.0_0.6624368178711549_1_1_8_6_0_5_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_10_0.0_0.6624368178711549_1_1_8_6_0_5_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_11_0.0_0.6624368178711549_7_1_8_6_0_5_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_11_0.0_0.6624368178711549_7_1_8_6_0_5_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_12_0.0_0.5354961747936906_7_2_0_8_0_3_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_12_0.0_0.5354961747936906_7_2_0_8_0_3_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_14_0.0_0.6198681267610745_7_1_8_6_0_5_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_14_0.0_0.6198681267610745_7_1_8_6_0_5_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_14_0.0_0.6624368178711549_12_1_8_5_0_5_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_14_0.0_0.6624368178711549_12_1_8_5_0_5_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_14_0.0_0.6624368178711549_7_1_0_6_0_5_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_14_0.0_0.6624368178711549_7_1_0_6_0_5_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_14_0.0_0.6624368178711549_7_1_8_6_0_5_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_14_0.0_0.6624368178711549_7_1_8_6_0_5_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_14_0.0_0.6624368178711549_7_4_6_6_0_5_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_14_0.0_0.6624368178711549_7_4_6_6_0_5_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_14_0.0_0.6624368178711549_7_6_8_6_0_5_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_14_0.0_0.6624368178711549_7_6_8_6_0_5_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_14_0.5626841592193953_0.6624368178711549_7_1_0_6_0_5_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_14_0.5626841592193953_0.6624368178711549_7_1_0_6_0_5_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_15_0.0_0.6624368178711549_7_3_8_6_0_3_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/cori1/opentuner/0/ijoutput_57_32_42_1_1_15_0.0_0.6624368178711549_7_3_8_6_0_3_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/mymachine/GPTune/98851/ijoutput_33_22_24_1_1_2_0.464082488892553_0.7992754704887874_2_1_0_5_1_4_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/mymachine/GPTune/98851/ijoutput_33_22_24_1_1_2_0.464082488892553_0.7992754704887874_2_1_0_5_1_4_0 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/mymachine/GPTune/98851/ijoutput_33_22_24_1_2_1_0.08228620392387907_0.43082888460590807_11_3_-1_6_3_6_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/mymachine/GPTune/98851/ijoutput_33_22_24_1_2_1_0.08228620392387907_0.43082888460590807_11_3_-1_6_3_6_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/mymachine/GPTune/98851/ijoutput_33_22_24_1_2_1_0.7348391594636331_0.6480433782540044_2_2_8_8_4_6_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/mymachine/GPTune/98851/ijoutput_33_22_24_1_2_1_0.7348391594636331_0.6480433782540044_2_2_8_8_4_6_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/mymachine/GPTune/98851/ijoutput_33_22_24_2_1_1_0.6482405754039832_0.20726888910586092_4_10_6_5_0_12_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/mymachine/GPTune/98851/ijoutput_33_22_24_2_1_1_0.6482405754039832_0.20726888910586092_4_10_6_5_0_12_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/124655/ijoutput_34_31_40_1_1_2_0.7507776331388479_0.5589919119805276_6_1_16_9_3_5_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/124655/ijoutput_34_31_40_1_1_2_0.7507776331388479_0.5589919119805276_6_1_16_9_3_5_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/124655/ijoutput_34_31_40_1_1_2_0.9930519455327274_0.23462311761770302_11_8_6_6_4_6_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/124655/ijoutput_34_31_40_1_1_2_0.9930519455327274_0.23462311761770302_11_8_6_6_4_6_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/124655/ijoutput_34_31_40_1_2_1_0.25502686243517325_0.8720475473224527_5_3_-1_5_4_12_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/124655/ijoutput_34_31_40_1_2_1_0.25502686243517325_0.8720475473224527_5_3_-1_5_4_12_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/124655/ijoutput_34_31_40_1_2_1_0.6899390407847731_0.5384872325187724_7_3_6_5_4_5_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/124655/ijoutput_34_31_40_1_2_1_0.6899390407847731_0.5384872325187724_7_3_6_5_4_5_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/124655/ijoutput_34_31_40_2_1_1_0.8243943323795626_0.3228795350165835_11_8_16_6_5_0_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/124655/ijoutput_34_31_40_2_1_1_0.8243943323795626_0.3228795350165835_11_8_16_6_5_0_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/124655/ijoutput_34_31_40_2_1_1_0.8765548868584325_0.19338442132644196_6_10_8_8_1_5_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/124655/ijoutput_34_31_40_2_1_1_0.8765548868584325_0.19338442132644196_6_10_8_8_1_5_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/130654/ijoutput_35_36_35_1_2_7_0.9144127959788524_0.9742932140480797_3_3_6_9_4_8_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/130654/ijoutput_35_36_35_1_2_7_0.9144127959788524_0.9742932140480797_3_3_6_9_4_8_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/130654/ijoutput_35_36_35_1_5_3_0.9446416231617665_0.000640950187890832_9_10_18_8_1_3_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/130654/ijoutput_35_36_35_1_5_3_0.9446416231617665_0.000640950187890832_9_10_18_8_1_3_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/130654/ijoutput_35_36_35_1_7_2_0.11884460109075828_0.16624194876259174_6_1_18_6_1_0_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/130654/ijoutput_35_36_35_1_7_2_0.11884460109075828_0.16624194876259174_6_1_18_6_1_0_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/130654/ijoutput_35_36_35_3_1_5_0.0445600376369228_0.27687861690791676_7_2_8_7_2_3_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/130654/ijoutput_35_36_35_3_1_5_0.0445600376369228_0.27687861690791676_7_2_8_7_2_3_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/130654/ijoutput_35_36_35_3_1_5_0.6257489728136427_0.9772769885778221_1_1_0_9_1_6_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/130654/ijoutput_35_36_35_3_1_5_0.6257489728136427_0.9772769885778221_1_1_0_9_1_6_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/26707/ijoutput_34_35_29_1_1_1_0.10047629248414147_0.9647560176262308_6_3_16_9_3_3_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/26707/ijoutput_34_35_29_1_1_1_0.10047629248414147_0.9647560176262308_6_3_16_9_3_3_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/26707/ijoutput_34_35_29_1_1_2_0.505456748819505_0.9649487646917385_10_0_18_8_5_6_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/26707/ijoutput_34_35_29_1_2_1_0.17295581100870544_0.9370527508700026_10_2_6_6_4_8_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/26707/ijoutput_34_35_29_1_2_1_0.17295581100870544_0.9370527508700026_10_2_6_6_4_8_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/26707/ijoutput_34_35_29_1_2_1_0.4030914915549236_0.2600090371362509_4_1_-1_9_4_0_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/26707/ijoutput_34_35_29_1_2_1_0.4030914915549236_0.2600090371362509_4_1_-1_9_4_0_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/26707/ijoutput_34_35_29_1_2_1_0.7103643745529442_0.6292807125650293_12_3_-1_6_4_6_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/26707/ijoutput_34_35_29_1_2_1_0.7103643745529442_0.6292807125650293_12_3_-1_6_4_6_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/26707/ijoutput_34_35_29_1_2_1_0.7581124327289295_0.10604682320439014_3_1_0_5_4_8_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/26707/ijoutput_34_35_29_1_2_1_0.7581124327289295_0.10604682320439014_3_1_0_5_4_8_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/26707/ijoutput_34_35_29_2_1_1_0.8742563486915463_0.5276070707277032_10_3_0_6_4_12_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/26707/ijoutput_34_35_29_2_1_1_0.8742563486915463_0.5276070707277032_10_3_0_6_4_12_3 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/26707/ijoutput_34_35_29_2_1_1_0.9717631642703163_0.07547775388945456_6_4_18_7_1_0_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/26707/ijoutput_34_35_29_2_1_1_0.9717631642703163_0.07547775388945456_6_4_18_7_1_0_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/60653/ijoutput_34_21_29_1_1_2_0.7507776331388479_0.5589919119805276_6_1_16_9_3_5_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/60653/ijoutput_34_21_29_1_1_2_0.7507776331388479_0.5589919119805276_6_1_16_9_3_5_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/60653/ijoutput_34_21_29_1_2_1_0.16491142696848773_0.6593737536538742_8_8_6_9_0_12_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/60653/ijoutput_34_21_29_1_2_1_0.16491142696848773_0.6593737536538742_8_8_6_9_0_12_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/60653/ijoutput_34_21_29_1_2_1_0.20552630277394865_0.5220586988288941_1_1_16_8_4_0_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/60653/ijoutput_34_21_29_1_2_1_0.20552630277394865_0.5220586988288941_1_1_16_8_4_0_0 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/60653/ijoutput_34_21_29_1_2_1_0.25502686243517325_0.8720475473224527_5_3_-1_5_4_12_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/60653/ijoutput_34_21_29_1_2_1_0.25502686243517325_0.8720475473224527_5_3_-1_5_4_12_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/60653/ijoutput_34_21_29_2_1_1_0.8765548868584325_0.19338442132644196_6_10_8_8_1_5_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/60653/ijoutput_34_21_29_2_1_1_0.8765548868584325_0.19338442132644196_6_10_8_8_1_5_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/60653/ijoutput_34_21_29_2_1_1_0.961373517207805_0.11808490524942418_3_8_-1_5_1_0_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/60653/ijoutput_34_21_29_2_1_1_0.961373517207805_0.11808490524942418_3_8_-1_5_1_0_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/81341/ijoutput_34_35_29_1_1_2_0.7507776331388479_0.5589919119805276_6_1_16_9_3_5_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/81341/ijoutput_34_35_29_1_1_2_0.7507776331388479_0.5589919119805276_6_1_16_9_3_5_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/81341/ijoutput_34_35_29_1_2_1_0.25502686243517325_0.8720475473224527_5_3_-1_5_4_12_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/81341/ijoutput_34_35_29_1_2_1_0.25502686243517325_0.8720475473224527_5_3_-1_5_4_12_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/81341/ijoutput_34_35_29_1_3_1_0.8381718178836659_0.8079204075953169_11_3_-1_6_3_4_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/81341/ijoutput_34_35_29_1_3_1_0.8381718178836659_0.8079204075953169_11_3_-1_6_3_4_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/81341/ijoutput_34_35_29_2_1_1_0.01619411626252623_0.004284176041127512_8_3_16_5_1_0_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/81341/ijoutput_34_35_29_2_1_1_0.01619411626252623_0.004284176041127512_8_3_16_5_1_0_0 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/81341/ijoutput_34_35_29_2_1_1_0.3613934415766485_0.0933491472849723_12_1_-1_8_5_3_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/81341/ijoutput_34_35_29_2_1_1_0.3613934415766485_0.0933491472849723_12_1_-1_8_5_3_0 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/81341/ijoutput_34_35_29_2_1_1_0.8765548868584325_0.19338442132644196_6_10_8_8_1_5_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/81341/ijoutput_34_35_29_2_1_1_0.8765548868584325_0.19338442132644196_6_10_8_8_1_5_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/938/ijoutput_43_24_33_12_1_1_0.775569104216487_0.3669894695735906_9_4_0_9_4_3_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/938/ijoutput_43_24_33_12_1_1_0.775569104216487_0.3669894695735906_9_4_0_9_4_3_0 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/938/ijoutput_43_24_33_1_11_1_0.7348391594636331_0.6480433782540044_2_2_8_8_4_6_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/938/ijoutput_43_24_33_1_11_1_0.7348391594636331_0.6480433782540044_2_2_8_8_4_6_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/938/ijoutput_43_24_33_1_12_1_0.5418615278687376_0.7915888277492623_9_10_0_9_4_4_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/938/ijoutput_43_24_33_1_12_1_0.5418615278687376_0.7915888277492623_9_10_0_9_4_4_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/938/ijoutput_43_24_33_1_5_2_0.2835573585685147_0.251411234254449_12_3_16_5_1_6_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/938/ijoutput_43_24_33_1_5_2_0.2835573585685147_0.251411234254449_12_3_16_5_1_6_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/938/ijoutput_43_24_33_2_4_1_0.464082488892553_0.7992754704887874_2_1_0_5_1_4_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/938/ijoutput_43_24_33_2_4_1_0.464082488892553_0.7992754704887874_2_1_0_5_1_4_0 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/938/ijoutput_43_24_33_2_6_1_0.021671627670914292_0.1790617188147384_10_1_8_5_4_4_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/938/ijoutput_43_24_33_2_6_1_0.021671627670914292_0.1790617188147384_10_1_8_5_4_4_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/938/ijoutput_43_24_33_3_2_2_0.03592580740410037_0.5208802917009943_3_6_6_5_4_0_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/938/ijoutput_43_24_33_3_2_2_0.03592580740410037_0.5208802917009943_3_6_6_5_4_0_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/938/ijoutput_43_24_33_3_3_1_0.1586942093998349_0.9942657030318188_2_0_18_5_4_12_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/938/ijoutput_43_24_33_3_3_1_0.1586942093998349_0.9942657030318188_2_0_18_5_4_12_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/938/ijoutput_43_24_33_3_4_1_0.004641326687537419_0.39749255695015456_1_0_8_6_1_12_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/938/ijoutput_43_24_33_3_4_1_0.004641326687537419_0.39749255695015456_1_0_8_6_1_12_0 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/GPTune/938/ijoutput_43_24_33_7_2_1_0.5622139869718416_0.2775018546071459_6_1_0_6_5_4_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/GPTune/938/ijoutput_43_24_33_7_2_1_0.5622139869718416_0.2775018546071459_6_1_0_6_5_4_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/hpbandster/81679/ijoutput_34_35_29_1_2_1_0.6126204132016422_0.22776960636042598_6_4_16_7_4_4_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/hpbandster/81679/ijoutput_34_35_29_1_2_1_0.6126204132016422_0.22776960636042598_6_4_16_7_4_4_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/hpbandster/81679/ijoutput_34_35_29_3_1_1_0.06857096453446365_0.9412889223350261_8_2_8_7_2_4_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/hpbandster/81679/ijoutput_34_35_29_3_1_1_0.06857096453446365_0.9412889223350261_8_2_8_7_2_4_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/hpbandster/81679/ijoutput_34_35_29_3_1_1_0.23950925880911866_0.06117223268991612_8_10_8_7_1_6_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/hpbandster/81679/ijoutput_34_35_29_3_1_1_0.23950925880911866_0.06117223268991612_8_10_8_7_1_6_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/hpbandster/81746/ijoutput_34_35_29_1_1_1_0.6279115321908805_0.08538882829330652_1_4_8_7_5_6_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/hpbandster/81746/ijoutput_34_35_29_1_1_1_0.6279115321908805_0.08538882829330652_1_4_8_7_5_6_4 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/hpbandster/81746/ijoutput_34_35_29_1_1_2_0.5446979814779164_0.9538680914136437_7_2_6_6_4_12_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/hpbandster/81746/ijoutput_34_35_29_1_1_2_0.5446979814779164_0.9538680914136437_7_2_6_6_4_12_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/hpbandster/81746/ijoutput_34_35_29_1_1_3_0.266041354514314_0.9350512523218454_6_6_8_8_4_5_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/hpbandster/81746/ijoutput_34_35_29_1_1_3_0.266041354514314_0.9350512523218454_6_6_8_8_4_5_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/hpbandster/81746/ijoutput_34_35_29_1_1_3_0.5933090973733791_0.18125288940934192_11_4_0_8_5_3_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/hpbandster/81746/ijoutput_34_35_29_1_1_3_0.5933090973733791_0.18125288940934192_11_4_0_8_5_3_2 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/hpbandster/81746/ijoutput_34_35_29_1_2_1_0.7017576935801626_0.9873218333710955_2_4_6_7_3_6_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/hpbandster/81746/ijoutput_34_35_29_1_2_1_0.7017576935801626_0.9873218333710955_2_4_6_7_3_6_1 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/exp/tr4/hpbandster/81746/ijoutput_34_35_29_1_3_1_0.35685936743252233_0.3017605144257548_3_0_6_7_1_8_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/exp/tr4/hpbandster/81746/ijoutput_34_35_29_1_3_1_0.35685936743252233_0.3017605144257548_3_0_6_7_1_8_5 -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/hypredriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/hypredriver.py -------------------------------------------------------------------------------- /examples/Hypre/hypre-driver/src/ij.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre-driver/src/ij.c -------------------------------------------------------------------------------- /examples/Hypre/hypre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre.py -------------------------------------------------------------------------------- /examples/Hypre/hypre_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre_2d.py -------------------------------------------------------------------------------- /examples/Hypre/hypre_2d_dimmerge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre_2d_dimmerge.py -------------------------------------------------------------------------------- /examples/Hypre/hypre_MB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre_MB.py -------------------------------------------------------------------------------- /examples/Hypre/hypre_model_reuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/hypre_model_reuse.py -------------------------------------------------------------------------------- /examples/Hypre/run_cori_hypre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/run_cori_hypre.sh -------------------------------------------------------------------------------- /examples/Hypre/run_cori_hypre_loadmodel_compare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/run_cori_hypre_loadmodel_compare.sh -------------------------------------------------------------------------------- /examples/Hypre/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Hypre/run_examples.sh -------------------------------------------------------------------------------- /examples/IMPACT-Z/.gptune/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/IMPACT-Z/.gptune/meta.json -------------------------------------------------------------------------------- /examples/IMPACT-Z/ImpactZ.in_test1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/IMPACT-Z/ImpactZ.in_test1 -------------------------------------------------------------------------------- /examples/IMPACT-Z/ImpactZ.in_test2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/IMPACT-Z/ImpactZ.in_test2 -------------------------------------------------------------------------------- /examples/IMPACT-Z/a.out_SIMPLEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/IMPACT-Z/a.out_SIMPLEX -------------------------------------------------------------------------------- /examples/IMPACT-Z/fort.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/IMPACT-Z/fort.18 -------------------------------------------------------------------------------- /examples/IMPACT-Z/fort.24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/IMPACT-Z/fort.24 -------------------------------------------------------------------------------- /examples/IMPACT-Z/fort.25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/IMPACT-Z/fort.25 -------------------------------------------------------------------------------- /examples/IMPACT-Z/fort.26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/IMPACT-Z/fort.26 -------------------------------------------------------------------------------- /examples/IMPACT-Z/fort.27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/IMPACT-Z/fort.27 -------------------------------------------------------------------------------- /examples/IMPACT-Z/fort.28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/IMPACT-Z/fort.28 -------------------------------------------------------------------------------- /examples/IMPACT-Z/fort.29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/IMPACT-Z/fort.29 -------------------------------------------------------------------------------- /examples/IMPACT-Z/fort.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/IMPACT-Z/fort.3 -------------------------------------------------------------------------------- /examples/IMPACT-Z/fort.32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/IMPACT-Z/fort.32 -------------------------------------------------------------------------------- /examples/IMPACT-Z/impact-z-driver/Input.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/IMPACT-Z/impact-z-driver/Input.f90 -------------------------------------------------------------------------------- /examples/IMPACT-Z/impact-z-driver/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/IMPACT-Z/impact-z-driver/main.f90 -------------------------------------------------------------------------------- /examples/IMPACT-Z/impact-z_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/IMPACT-Z/impact-z_single.py -------------------------------------------------------------------------------- /examples/IMPACT-Z/impact-z_single1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/IMPACT-Z/impact-z_single1D.py -------------------------------------------------------------------------------- /examples/IMPACT-Z/impact-z_single_simplex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/IMPACT-Z/impact-z_single_simplex.py -------------------------------------------------------------------------------- /examples/IMPACT-Z/matchquad.in_test1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/IMPACT-Z/matchquad.in_test1 -------------------------------------------------------------------------------- /examples/IMPACT-Z/matchquad.in_test2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/IMPACT-Z/matchquad.in_test2 -------------------------------------------------------------------------------- /examples/IMPACT-Z/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/IMPACT-Z/run_examples.sh -------------------------------------------------------------------------------- /examples/MFEM/mfem-driver/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/MFEM/mfem-driver/src/CMakeLists.txt -------------------------------------------------------------------------------- /examples/MFEM/mfem-driver/src/ex3p_indef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/MFEM/mfem-driver/src/ex3p_indef.cpp -------------------------------------------------------------------------------- /examples/MFEM/mfem_maxwell3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/MFEM/mfem_maxwell3d.py -------------------------------------------------------------------------------- /examples/MFEM/mfem_maxwell3d_inline-tet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/MFEM/mfem_maxwell3d_inline-tet.py -------------------------------------------------------------------------------- /examples/MFEM/run_cori_mfem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/MFEM/run_cori_mfem.sh -------------------------------------------------------------------------------- /examples/MFEM/run_cori_mfem_inline-tet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/MFEM/run_cori_mfem_inline-tet.sh -------------------------------------------------------------------------------- /examples/MFEM/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/MFEM/run_examples.sh -------------------------------------------------------------------------------- /examples/MFEM_RCI/.gptune/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/MFEM_RCI/.gptune/meta.json -------------------------------------------------------------------------------- /examples/MFEM_RCI/gptune.db/MFEM.json.temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/MFEM_RCI/gptune.db/MFEM.json.temp -------------------------------------------------------------------------------- /examples/MFEM_RCI/mfem_maxwell3d_MB_RCI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/MFEM_RCI/mfem_maxwell3d_MB_RCI.py -------------------------------------------------------------------------------- /examples/MFEM_RCI/mfem_maxwell3d_MB_RCI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/MFEM_RCI/mfem_maxwell3d_MB_RCI.sh -------------------------------------------------------------------------------- /examples/MFEM_RCI/mfem_maxwell3d_MO_RCI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/MFEM_RCI/mfem_maxwell3d_MO_RCI.py -------------------------------------------------------------------------------- /examples/MFEM_RCI/mfem_maxwell3d_MO_RCI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/MFEM_RCI/mfem_maxwell3d_MO_RCI.sh -------------------------------------------------------------------------------- /examples/MFEM_RCI/mfem_maxwell3d_RCI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/MFEM_RCI/mfem_maxwell3d_RCI.py -------------------------------------------------------------------------------- /examples/MFEM_RCI/mfem_maxwell3d_RCI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/MFEM_RCI/mfem_maxwell3d_RCI.sh -------------------------------------------------------------------------------- /examples/MFEM_RCI/parse_GPTuneBand_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/MFEM_RCI/parse_GPTuneBand_db.py -------------------------------------------------------------------------------- /examples/MFEM_RCI/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/MFEM_RCI/run_examples.sh -------------------------------------------------------------------------------- /examples/NIMROD/.gptune/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/NIMROD/.gptune/meta.json -------------------------------------------------------------------------------- /examples/NIMROD/nimrod_single_MB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/NIMROD/nimrod_single_MB.py -------------------------------------------------------------------------------- /examples/NIMROD/run_cori_haswell_gnu_nimrod_MB.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/NIMROD/run_cori_haswell_gnu_nimrod_MB.sh -------------------------------------------------------------------------------- /examples/NIMROD/run_cori_haswell_gnu_nimrod_default_only.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/NIMROD/run_cori_haswell_gnu_nimrod_default_only.sh -------------------------------------------------------------------------------- /examples/NIMROD/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/NIMROD/run_examples.sh -------------------------------------------------------------------------------- /examples/NIMROD/runit_gnu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/NIMROD/runit_gnu.sh -------------------------------------------------------------------------------- /examples/NIMROD_RCI/.gptune/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/NIMROD_RCI/.gptune/meta.json -------------------------------------------------------------------------------- /examples/NIMROD_RCI/nimrod_single_MB_RCI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/NIMROD_RCI/nimrod_single_MB_RCI.py -------------------------------------------------------------------------------- /examples/NIMROD_RCI/nimrod_single_MB_RCI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/NIMROD_RCI/nimrod_single_MB_RCI.sh -------------------------------------------------------------------------------- /examples/NIMROD_RCI/nimrod_single_slu3d_MB_RCI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/NIMROD_RCI/nimrod_single_slu3d_MB_RCI.py -------------------------------------------------------------------------------- /examples/NIMROD_RCI/nimrod_single_slu3d_MB_RCI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/NIMROD_RCI/nimrod_single_slu3d_MB_RCI.sh -------------------------------------------------------------------------------- /examples/NIMROD_RCI/parse_GPTuneBand_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/NIMROD_RCI/parse_GPTuneBand_db.py -------------------------------------------------------------------------------- /examples/NIMROD_RCI/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/NIMROD_RCI/run_examples.sh -------------------------------------------------------------------------------- /examples/NewtonSketch/grid_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/NewtonSketch/grid_search.py -------------------------------------------------------------------------------- /examples/NewtonSketch/run_experiment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/NewtonSketch/run_experiment.sh -------------------------------------------------------------------------------- /examples/NewtonSketch/tune_gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/NewtonSketch/tune_gaussian.py -------------------------------------------------------------------------------- /examples/NewtonSketch/tune_less_sparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/NewtonSketch/tune_less_sparse.py -------------------------------------------------------------------------------- /examples/NewtonSketch/tune_rrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/NewtonSketch/tune_rrs.py -------------------------------------------------------------------------------- /examples/PLASMA/dgels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/PLASMA/dgels.py -------------------------------------------------------------------------------- /examples/PLASMA/dgemm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/PLASMA/dgemm.py -------------------------------------------------------------------------------- /examples/PLASMA/dgeqrf-ips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/PLASMA/dgeqrf-ips.py -------------------------------------------------------------------------------- /examples/PLASMA/dgeqrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/PLASMA/dgeqrf.py -------------------------------------------------------------------------------- /examples/PLASMA/reference_profiler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/PLASMA/reference_profiler/Makefile -------------------------------------------------------------------------------- /examples/PLASMA/reference_profiler/make.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/PLASMA/reference_profiler/make.inc -------------------------------------------------------------------------------- /examples/PLASMA/reference_profiler/pmc_profiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/PLASMA/reference_profiler/pmc_profiler.c -------------------------------------------------------------------------------- /examples/PLASMA/reference_profiler/pmc_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/PLASMA/reference_profiler/pmc_profiler.h -------------------------------------------------------------------------------- /examples/PLASMA/reference_profiler/pmc_sampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/PLASMA/reference_profiler/pmc_sampler.c -------------------------------------------------------------------------------- /examples/PLASMA/reference_profiler/pmc_sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/PLASMA/reference_profiler/pmc_sampler.h -------------------------------------------------------------------------------- /examples/QTT-FDTD/.gptune/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/QTT-FDTD/.gptune/meta.json -------------------------------------------------------------------------------- /examples/QTT-FDTD/QTT_MLA_MO_RCI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/QTT-FDTD/QTT_MLA_MO_RCI.py -------------------------------------------------------------------------------- /examples/QTT-FDTD/QTT_MLA_MO_RCI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/QTT-FDTD/QTT_MLA_MO_RCI.sh -------------------------------------------------------------------------------- /examples/QTT-FDTD/gptune.db/QTT-FDTD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/QTT-FDTD/gptune.db/QTT-FDTD.json -------------------------------------------------------------------------------- /examples/QTT-FDTD/log.qtt-fdtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/QTT-FDTD/log.qtt-fdtd -------------------------------------------------------------------------------- /examples/QTT-FDTD/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/QTT-FDTD/run_examples.sh -------------------------------------------------------------------------------- /examples/STRUMPACK-KRR-HSS/.gptune/configs/cori-haswell-openmpi-gnu-1nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK-KRR-HSS/.gptune/configs/cori-haswell-openmpi-gnu-1nodes.json -------------------------------------------------------------------------------- /examples/STRUMPACK-KRR-HSS/STRUMPACK-driver/src/Kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK-KRR-HSS/STRUMPACK-driver/src/Kernel.cpp -------------------------------------------------------------------------------- /examples/STRUMPACK-KRR-HSS/STRUMPACK-driver/src/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK-KRR-HSS/STRUMPACK-driver/src/Kernel.h -------------------------------------------------------------------------------- /examples/STRUMPACK-KRR-HSS/STRUMPACK-driver/src/KernelRegressionMPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK-KRR-HSS/STRUMPACK-driver/src/KernelRegressionMPI.py -------------------------------------------------------------------------------- /examples/STRUMPACK-KRR-HSS/STRUMPACK-driver/src/STRUMPACKKernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK-KRR-HSS/STRUMPACK-driver/src/STRUMPACKKernel.py -------------------------------------------------------------------------------- /examples/STRUMPACK-KRR-HSS/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK-KRR-HSS/install.sh -------------------------------------------------------------------------------- /examples/STRUMPACK-KRR-HSS/run_cori_experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK-KRR-HSS/run_cori_experiments.py -------------------------------------------------------------------------------- /examples/STRUMPACK-KRR-HSS/run_cori_experiments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK-KRR-HSS/run_cori_experiments.sh -------------------------------------------------------------------------------- /examples/STRUMPACK-KRR-HSS/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK-KRR-HSS/run_examples.sh -------------------------------------------------------------------------------- /examples/STRUMPACK-KRR-HSS/strumpack_MLA_KRR_HSS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK-KRR-HSS/strumpack_MLA_KRR_HSS.py -------------------------------------------------------------------------------- /examples/STRUMPACK/.gptune/configs/cori-haswell-openmpi-gnu-1nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK/.gptune/configs/cori-haswell-openmpi-gnu-1nodes.json -------------------------------------------------------------------------------- /examples/STRUMPACK/.gptune/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK/.gptune/meta.json -------------------------------------------------------------------------------- /examples/STRUMPACK/STRUMPACK-driver/src/KernelRegressionMPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK/STRUMPACK-driver/src/KernelRegressionMPI.py -------------------------------------------------------------------------------- /examples/STRUMPACK/STRUMPACK-driver/src/testPoisson3dMPIDist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK/STRUMPACK-driver/src/testPoisson3dMPIDist.cpp -------------------------------------------------------------------------------- /examples/STRUMPACK/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK/run_examples.sh -------------------------------------------------------------------------------- /examples/STRUMPACK/strumpack_MLA_1gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK/strumpack_MLA_1gpu.py -------------------------------------------------------------------------------- /examples/STRUMPACK/strumpack_MLA_KRR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK/strumpack_MLA_KRR.py -------------------------------------------------------------------------------- /examples/STRUMPACK/strumpack_MLA_KRR_MB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK/strumpack_MLA_KRR_MB.py -------------------------------------------------------------------------------- /examples/STRUMPACK/strumpack_MLA_KRR_MO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK/strumpack_MLA_KRR_MO.py -------------------------------------------------------------------------------- /examples/STRUMPACK/strumpack_MLA_Poisson3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK/strumpack_MLA_Poisson3d.py -------------------------------------------------------------------------------- /examples/STRUMPACK/strumpack_MLA_Poisson3d_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK/strumpack_MLA_Poisson3d_simple.py -------------------------------------------------------------------------------- /examples/STRUMPACK/strumpack_parse_GPTuneBand_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/STRUMPACK/strumpack_parse_GPTuneBand_db.py -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/.gptune/configs/cori-haswell-openmpi-gnu-1nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/.gptune/configs/cori-haswell-openmpi-gnu-1nodes.json -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/.gptune/configs/cori-haswell-openmpi-gnu-32nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/.gptune/configs/cori-haswell-openmpi-gnu-32nodes.json -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/.gptune/configs/cori-haswell-openmpi-gnu-4nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/.gptune/configs/cori-haswell-openmpi-gnu-4nodes.json -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/.gptune/configs/cori-haswell-openmpi-gnu-64nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/.gptune/configs/cori-haswell-openmpi-gnu-64nodes.json -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/.gptune/configs/cori-haswell-openmpi-gnu-8nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/.gptune/configs/cori-haswell-openmpi-gnu-8nodes.json -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/.gptune/configs/cori-knl-openmpi-gnu-1nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/.gptune/configs/cori-knl-openmpi-gnu-1nodes.json -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/.gptune/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/.gptune/meta.json -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/.gptune/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/.gptune/model.json -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/README -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/analysis_TLA-64nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/analysis_TLA-64nodes.py -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/analysis_TLA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/analysis_TLA.py -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/merge_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/merge_db.py -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/run_cori_TLA_experiments-64nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/run_cori_TLA_experiments-64nodes.py -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/run_cori_TLA_experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/run_cori_TLA_experiments.py -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/run_cori_scalapack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/run_cori_scalapack.sh -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/Makefile -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/exp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/spt/pdqrdriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/spt/pdqrdriver.py -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/src/pdgelqrv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/src/pdgelqrv.f -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/src/pdgeqlrv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/src/pdgeqlrv.f -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/src/pdgeqrrv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/src/pdgeqrrv.f -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/src/pdgerqrv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/src/pdgerqrv.f -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/src/pdlafchk.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/src/pdlafchk.f -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/src/pdmatgen.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/src/pdmatgen.f -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/src/pdqrdriver.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/src/pdqrdriver.f -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/src/pdqrinfo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/src/pdqrinfo.f -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/src/pdtzrzrv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/src/pdtzrzrv.f -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/src/pmatgeninc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/scalapack-driver/src/pmatgeninc.f -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/scalapack_MLA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/scalapack_MLA.py -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/scalapack_TLA_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/scalapack_TLA_machine.py -------------------------------------------------------------------------------- /examples/ScaLAPACK-PDGEQRF-ATMG/scalapack_TLA_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/ScaLAPACK-PDGEQRF-ATMG/scalapack_TLA_task.py -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/.gptune/configs/cori-haswell-openmpi-gnu-1nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/.gptune/configs/cori-haswell-openmpi-gnu-1nodes.json -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/.gptune/configs/cori-haswell-openmpi-gnu-4nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/.gptune/configs/cori-haswell-openmpi-gnu-4nodes.json -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/.gptune/configs/cori-haswell-openmpi-gnu-8nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/.gptune/configs/cori-haswell-openmpi-gnu-8nodes.json -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/.gptune/configs/cori-knl-openmpi-gnu-1nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/.gptune/configs/cori-knl-openmpi-gnu-1nodes.json -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/.gptune/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/.gptune/meta.json -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/.gptune/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/.gptune/model.json -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/analysis_TLA-64nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/analysis_TLA-64nodes.py -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/run_cori_TLA_experiments-64nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/run_cori_TLA_experiments-64nodes.py -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/run_cori_scalapack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/run_cori_scalapack.sh -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/run_cori_scalapack_perfmodel_compare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/run_cori_scalapack_perfmodel_compare.sh -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/run_cori_scalapack_tunercompare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/run_cori_scalapack_tunercompare.sh -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/run_examples.sh -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/scalapack-driver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/scalapack-driver/Makefile -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/scalapack-driver/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/scalapack-driver/exp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/scalapack-driver/spt/pdqrdriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/scalapack-driver/spt/pdqrdriver.py -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/scalapack-driver/src/pdgelqrv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/scalapack-driver/src/pdgelqrv.f -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/scalapack-driver/src/pdgeqlrv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/scalapack-driver/src/pdgeqlrv.f -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/scalapack-driver/src/pdgeqrrv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/scalapack-driver/src/pdgeqrrv.f -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/scalapack-driver/src/pdgerqrv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/scalapack-driver/src/pdgerqrv.f -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/scalapack-driver/src/pdlafchk.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/scalapack-driver/src/pdlafchk.f -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/scalapack-driver/src/pdmatgen.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/scalapack-driver/src/pdmatgen.f -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/scalapack-driver/src/pdqrdriver.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/scalapack-driver/src/pdqrdriver.f -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/scalapack-driver/src/pdqrinfo.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/scalapack-driver/src/pdqrinfo.f -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/scalapack-driver/src/pdtzrzrv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/scalapack-driver/src/pdtzrzrv.f -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/scalapack-driver/src/pmatgeninc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/scalapack-driver/src/pmatgeninc.f -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/scalapack_MLA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/scalapack_MLA.py -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/scalapack_MLA_perfmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/scalapack_MLA_perfmodel.py -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/scalapack_TLA_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/scalapack_TLA_backup.py -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/scalapack_TLA_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/scalapack_TLA_machine.py -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/scalapack_TLA_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/scalapack_TLA_task.py -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF/scalapack_sensitivity_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF/scalapack_sensitivity_analysis.py -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF_RCI/.gptune/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF_RCI/.gptune/meta.json -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF_RCI/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF_RCI/run_examples.sh -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF_RCI/scalapack-driver/bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF_RCI/scalapack-driver/exp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF_RCI/scalapack-driver/spt/pdqrdriver_in_out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF_RCI/scalapack-driver/spt/pdqrdriver_in_out.py -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF_RCI/scalapack_MLA_RCI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF_RCI/scalapack_MLA_RCI.py -------------------------------------------------------------------------------- /examples/Scalapack-PDGEQRF_RCI/scalapack_MLA_RCI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/Scalapack-PDGEQRF_RCI/scalapack_MLA_RCI.sh -------------------------------------------------------------------------------- /examples/SmoothingSplines/.gptune/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SmoothingSplines/.gptune/meta.json -------------------------------------------------------------------------------- /examples/SmoothingSplines/datagen/gendata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SmoothingSplines/datagen/gendata.py -------------------------------------------------------------------------------- /examples/SmoothingSplines/env_cori.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SmoothingSplines/env_cori.sh -------------------------------------------------------------------------------- /examples/SmoothingSplines/get_dataset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SmoothingSplines/get_dataset.sh -------------------------------------------------------------------------------- /examples/SmoothingSplines/gptune-search-experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SmoothingSplines/gptune-search-experiments.py -------------------------------------------------------------------------------- /examples/SmoothingSplines/gptune-search-gpy-household.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SmoothingSplines/gptune-search-gpy-household.py -------------------------------------------------------------------------------- /examples/SmoothingSplines/gptune-search-gpy-winequality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SmoothingSplines/gptune-search-gpy-winequality.py -------------------------------------------------------------------------------- /examples/SmoothingSplines/gptune-search-gpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SmoothingSplines/gptune-search-gpy.py -------------------------------------------------------------------------------- /examples/SmoothingSplines/gptune-search-lcm-household.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SmoothingSplines/gptune-search-lcm-household.py -------------------------------------------------------------------------------- /examples/SmoothingSplines/gptune-search-lcm-winequality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SmoothingSplines/gptune-search-lcm-winequality.py -------------------------------------------------------------------------------- /examples/SmoothingSplines/gptune-search-lcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SmoothingSplines/gptune-search-lcm.py -------------------------------------------------------------------------------- /examples/SmoothingSplines/gptune-search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SmoothingSplines/gptune-search.py -------------------------------------------------------------------------------- /examples/SmoothingSplines/grid-search-winequality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SmoothingSplines/grid-search-winequality.py -------------------------------------------------------------------------------- /examples/SmoothingSplines/grid-search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SmoothingSplines/grid-search.py -------------------------------------------------------------------------------- /examples/SmoothingSplines/run_cori_grid-search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SmoothingSplines/run_cori_grid-search.sh -------------------------------------------------------------------------------- /examples/SmoothingSplines/winequality/score_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SmoothingSplines/winequality/score_test.txt -------------------------------------------------------------------------------- /examples/SmoothingSplines/winequality/score_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SmoothingSplines/winequality/score_train.txt -------------------------------------------------------------------------------- /examples/SmoothingSplines/winequality/wine_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SmoothingSplines/winequality/wine_test.txt -------------------------------------------------------------------------------- /examples/SmoothingSplines/winequality/wine_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SmoothingSplines/winequality/wine_train.txt -------------------------------------------------------------------------------- /examples/SuperLU_DIST/.gptune/configs/cori-haswell-openmpi-gnu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST/.gptune/configs/cori-haswell-openmpi-gnu.json -------------------------------------------------------------------------------- /examples/SuperLU_DIST/.gptune/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST/.gptune/meta.json -------------------------------------------------------------------------------- /examples/SuperLU_DIST/download_more_example_matrices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST/download_more_example_matrices.sh -------------------------------------------------------------------------------- /examples/SuperLU_DIST/run_cori_superlu_real_MLA_MO.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST/run_cori_superlu_real_MLA_MO.sh -------------------------------------------------------------------------------- /examples/SuperLU_DIST/run_cori_superlu_real_MLA_TLA.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST/run_cori_superlu_real_MLA_TLA.sh -------------------------------------------------------------------------------- /examples/SuperLU_DIST/run_cori_superlu_real_single_MO.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST/run_cori_superlu_real_single_MO.sh -------------------------------------------------------------------------------- /examples/SuperLU_DIST/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST/run_examples.sh -------------------------------------------------------------------------------- /examples/SuperLU_DIST/superlu_MLA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST/superlu_MLA.py -------------------------------------------------------------------------------- /examples/SuperLU_DIST/superlu_MLA_1gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST/superlu_MLA_1gpu.py -------------------------------------------------------------------------------- /examples/SuperLU_DIST/superlu_MLA_MO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST/superlu_MLA_MO.py -------------------------------------------------------------------------------- /examples/SuperLU_DIST/superlu_MLA_MO_complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST/superlu_MLA_MO_complex.py -------------------------------------------------------------------------------- /examples/SuperLU_DIST/superlu_MLA_ngpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST/superlu_MLA_ngpu.py -------------------------------------------------------------------------------- /examples/SuperLU_DIST/superlu_single_MO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST/superlu_single_MO.py -------------------------------------------------------------------------------- /examples/SuperLU_DIST_RCI/.gptune/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST_RCI/.gptune/meta.json -------------------------------------------------------------------------------- /examples/SuperLU_DIST_RCI/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST_RCI/run_examples.sh -------------------------------------------------------------------------------- /examples/SuperLU_DIST_RCI/superlu_MLA_3D_MO_RCI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST_RCI/superlu_MLA_3D_MO_RCI.py -------------------------------------------------------------------------------- /examples/SuperLU_DIST_RCI/superlu_MLA_3D_MO_RCI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST_RCI/superlu_MLA_3D_MO_RCI.sh -------------------------------------------------------------------------------- /examples/SuperLU_DIST_RCI/superlu_MLA_3D_ngpu_MO_RCI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST_RCI/superlu_MLA_3D_ngpu_MO_RCI.py -------------------------------------------------------------------------------- /examples/SuperLU_DIST_RCI/superlu_MLA_3D_ngpu_MO_RCI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST_RCI/superlu_MLA_3D_ngpu_MO_RCI.sh -------------------------------------------------------------------------------- /examples/SuperLU_DIST_RCI/superlu_MLA_MO_RCI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST_RCI/superlu_MLA_MO_RCI.py -------------------------------------------------------------------------------- /examples/SuperLU_DIST_RCI/superlu_MLA_MO_RCI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST_RCI/superlu_MLA_MO_RCI.sh -------------------------------------------------------------------------------- /examples/SuperLU_DIST_RCI/superlu_MLA_RCI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST_RCI/superlu_MLA_RCI.py -------------------------------------------------------------------------------- /examples/SuperLU_DIST_RCI/superlu_MLA_RCI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST_RCI/superlu_MLA_RCI.sh -------------------------------------------------------------------------------- /examples/SuperLU_DIST_RCI/superlu_MLA_ngpu_MO_RCI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST_RCI/superlu_MLA_ngpu_MO_RCI.py -------------------------------------------------------------------------------- /examples/SuperLU_DIST_RCI/superlu_MLA_ngpu_MO_RCI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST_RCI/superlu_MLA_ngpu_MO_RCI.sh -------------------------------------------------------------------------------- /examples/SuperLU_DIST_RCI/superlu_MLA_ngpu_RCI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST_RCI/superlu_MLA_ngpu_RCI.py -------------------------------------------------------------------------------- /examples/SuperLU_DIST_RCI/superlu_MLA_ngpu_RCI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/SuperLU_DIST_RCI/superlu_MLA_ngpu_RCI.sh -------------------------------------------------------------------------------- /examples/cnnMNIST/.gptune/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/cnnMNIST/.gptune/meta.json -------------------------------------------------------------------------------- /examples/cnnMNIST/cnnMNIST-driver/cnnMNISTdriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/cnnMNIST/cnnMNIST-driver/cnnMNISTdriver.py -------------------------------------------------------------------------------- /examples/cnnMNIST/cnnMNIST_MB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/cnnMNIST/cnnMNIST_MB.py -------------------------------------------------------------------------------- /examples/cnnMNIST/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/cnnMNIST/run_examples.sh -------------------------------------------------------------------------------- /examples/heffte_RCI/heffte_RCI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/heffte_RCI/heffte_RCI.py -------------------------------------------------------------------------------- /examples/heffte_RCI/heffte_RCI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/heffte_RCI/heffte_RCI.sh -------------------------------------------------------------------------------- /examples/heffte_RCI/run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/heffte_RCI/run_examples.sh -------------------------------------------------------------------------------- /examples/postprocess/MFEM_RCI/parse_plot_history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/MFEM_RCI/parse_plot_history.sh -------------------------------------------------------------------------------- /examples/postprocess/MFEM_RCI/parse_results_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/MFEM_RCI/parse_results_history.py -------------------------------------------------------------------------------- /examples/postprocess/MFEM_RCI/plot_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/MFEM_RCI/plot_history.py -------------------------------------------------------------------------------- /examples/postprocess/NIMROD_RCI/parse_plot_history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/NIMROD_RCI/parse_plot_history.sh -------------------------------------------------------------------------------- /examples/postprocess/NIMROD_RCI/parse_results_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/NIMROD_RCI/parse_results_history.py -------------------------------------------------------------------------------- /examples/postprocess/NIMROD_RCI/plot_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/NIMROD_RCI/plot_history.py -------------------------------------------------------------------------------- /examples/postprocess/STRUMPACK/krr_parse_plot_history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/STRUMPACK/krr_parse_plot_history.sh -------------------------------------------------------------------------------- /examples/postprocess/STRUMPACK/krr_parse_results_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/STRUMPACK/krr_parse_results_history.py -------------------------------------------------------------------------------- /examples/postprocess/STRUMPACK/krr_plot_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/STRUMPACK/krr_plot_history.py -------------------------------------------------------------------------------- /examples/postprocess/demo/demo_ntask20_nrun20_model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/demo/demo_ntask20_nrun20_model -------------------------------------------------------------------------------- /examples/postprocess/demo/demo_ntask20_nrun20_nomodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/demo/demo_ntask20_nrun20_nomodel -------------------------------------------------------------------------------- /examples/postprocess/demo/demo_ntask20_nrun40_model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/demo/demo_ntask20_nrun40_model -------------------------------------------------------------------------------- /examples/postprocess/demo/demo_ntask20_nrun40_nomodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/demo/demo_ntask20_nrun40_nomodel -------------------------------------------------------------------------------- /examples/postprocess/demo/demo_ntask20_nrun80_model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/demo/demo_ntask20_nrun80_model -------------------------------------------------------------------------------- /examples/postprocess/demo/demo_ntask20_nrun80_nomodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/demo/demo_ntask20_nrun80_nomodel -------------------------------------------------------------------------------- /examples/postprocess/demo/demo_parse_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/demo/demo_parse_results.py -------------------------------------------------------------------------------- /examples/postprocess/demo/demo_plot_performancemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/demo/demo_plot_performancemodel.py -------------------------------------------------------------------------------- /examples/postprocess/demo/demo_plot_performancemodel_tex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/demo/demo_plot_performancemodel_tex.py -------------------------------------------------------------------------------- /examples/postprocess/demo/line_colors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/demo/line_colors.m -------------------------------------------------------------------------------- /examples/postprocess/demo/models_demo_nodes1_ntask20.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/demo/models_demo_nodes1_ntask20.pkl -------------------------------------------------------------------------------- /examples/postprocess/demo/models_demo_nodes1_ntask20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/demo/models_demo_nodes1_ntask20.txt -------------------------------------------------------------------------------- /examples/postprocess/demo/obj_t_0.000000.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/demo/obj_t_0.000000.eps -------------------------------------------------------------------------------- /examples/postprocess/demo/parallel_model_search_cori.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/demo/parallel_model_search_cori.m -------------------------------------------------------------------------------- /examples/postprocess/demo/parse_plot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/demo/parse_plot.sh -------------------------------------------------------------------------------- /examples/postprocess/demo/plot_obj_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/demo/plot_obj_demo.py -------------------------------------------------------------------------------- /examples/postprocess/demo/plot_pareto_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/demo/plot_pareto_demo.py -------------------------------------------------------------------------------- /examples/postprocess/demo/plots/models_demo_nodes1_ntask20.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/demo/plots/models_demo_nodes1_ntask20.pdf -------------------------------------------------------------------------------- /examples/postprocess/hypre/exp_hypre_Poisson_nmax100_nmin10_ntask30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/hypre/exp_hypre_Poisson_nmax100_nmin10_ntask30.txt -------------------------------------------------------------------------------- /examples/postprocess/hypre/exp_hypre_Poisson_nmax150_nmin10_ntask60.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/hypre/exp_hypre_Poisson_nmax150_nmin10_ntask60.txt -------------------------------------------------------------------------------- /examples/postprocess/hypre/exp_hypre_Poisson_nmax150_nmin30_ntask30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/hypre/exp_hypre_Poisson_nmax150_nmin30_ntask30.txt -------------------------------------------------------------------------------- /examples/postprocess/hypre/exp_hypre_Poisson_nmax200_nmin100_ntask30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/hypre/exp_hypre_Poisson_nmax200_nmin100_ntask30.txt -------------------------------------------------------------------------------- /examples/postprocess/hypre/exp_hypre_Poisson_nmax200_nmin10_ntask90.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/hypre/exp_hypre_Poisson_nmax200_nmin10_ntask90.txt -------------------------------------------------------------------------------- /examples/postprocess/hypre/exp_hypre_convdiff_nmax100_nmin10_ntask30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/hypre/exp_hypre_convdiff_nmax100_nmin10_ntask30.txt -------------------------------------------------------------------------------- /examples/postprocess/hypre/exp_hypre_convdiff_nmax200_nmin100_ntask30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/hypre/exp_hypre_convdiff_nmax200_nmin100_ntask30.txt -------------------------------------------------------------------------------- /examples/postprocess/hypre/exp_hypre_convdiff_nmax200_nmin10_ntask60.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/hypre/exp_hypre_convdiff_nmax200_nmin10_ntask60.txt -------------------------------------------------------------------------------- /examples/postprocess/hypre/hypre_parse_plot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/hypre/hypre_parse_plot.sh -------------------------------------------------------------------------------- /examples/postprocess/hypre/hypre_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/hypre/hypre_plot.py -------------------------------------------------------------------------------- /examples/postprocess/hypre/parse_tuning_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/hypre/parse_tuning_results.py -------------------------------------------------------------------------------- /examples/postprocess/scalapack/a.out_scalapck_ML_m20000_n20000_nodes256_core2_ntask5_nrun10_GPTune_oversubscribe_modelfit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/a.out_scalapck_ML_m20000_n20000_nodes256_core2_ntask5_nrun10_GPTune_oversubscribe_modelfit -------------------------------------------------------------------------------- /examples/postprocess/scalapack/a.out_scalapck_ML_m20000_n20000_nodes256_core2_ntask5_nrun10_GPTune_oversubscribe_nomodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/a.out_scalapck_ML_m20000_n20000_nodes256_core2_ntask5_nrun10_GPTune_oversubscribe_nomodel -------------------------------------------------------------------------------- /examples/postprocess/scalapack/a.out_scalapck_ML_m20000_n20000_nodes256_core2_ntask5_nrun20_GPTune_oversubscribe_modelfit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/a.out_scalapck_ML_m20000_n20000_nodes256_core2_ntask5_nrun20_GPTune_oversubscribe_modelfit -------------------------------------------------------------------------------- /examples/postprocess/scalapack/a.out_scalapck_ML_m20000_n20000_nodes256_core2_ntask5_nrun20_GPTune_oversubscribe_nomodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/a.out_scalapck_ML_m20000_n20000_nodes256_core2_ntask5_nrun20_GPTune_oversubscribe_nomodel -------------------------------------------------------------------------------- /examples/postprocess/scalapack/a.out_scalapck_ML_m20000_n20000_nodes256_core2_ntask5_nrun40_GPTune_oversubscribe_modelfit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/a.out_scalapck_ML_m20000_n20000_nodes256_core2_ntask5_nrun40_GPTune_oversubscribe_modelfit -------------------------------------------------------------------------------- /examples/postprocess/scalapack/a.out_scalapck_ML_m20000_n20000_nodes256_core2_ntask5_nrun40_GPTune_oversubscribe_nomodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/a.out_scalapck_ML_m20000_n20000_nodes256_core2_ntask5_nrun40_GPTune_oversubscribe_nomodel -------------------------------------------------------------------------------- /examples/postprocess/scalapack/a.out_scalapck_ML_m40000_n40000_nodes64_core32_ntask10_nrun10_GPTune_oversubscribe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/a.out_scalapck_ML_m40000_n40000_nodes64_core32_ntask10_nrun10_GPTune_oversubscribe -------------------------------------------------------------------------------- /examples/postprocess/scalapack/a.out_scalapck_ML_m40000_n40000_nodes64_core32_ntask10_nrun10_hpbandster_oversubscribe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/a.out_scalapck_ML_m40000_n40000_nodes64_core32_ntask10_nrun10_hpbandster_oversubscribe -------------------------------------------------------------------------------- /examples/postprocess/scalapack/a.out_scalapck_ML_m40000_n40000_nodes64_core32_ntask10_nrun10_opentuner_oversubscribe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/a.out_scalapck_ML_m40000_n40000_nodes64_core32_ntask10_nrun10_opentuner_oversubscribe -------------------------------------------------------------------------------- /examples/postprocess/scalapack/a.out_scalapck_ML_m40000_n40000_nodes64_core32_ntask1_nrun100_GPTune_oversubscribe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/a.out_scalapck_ML_m40000_n40000_nodes64_core32_ntask1_nrun100_GPTune_oversubscribe -------------------------------------------------------------------------------- /examples/postprocess/scalapack/line_colors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/line_colors.m -------------------------------------------------------------------------------- /examples/postprocess/scalapack/models_scalapack_mmax20000_nmax20000_nodes16_ntask5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/models_scalapack_mmax20000_nmax20000_nodes16_ntask5.pkl -------------------------------------------------------------------------------- /examples/postprocess/scalapack/models_scalapack_mmax20000_nmax20000_nodes16_ntask5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/models_scalapack_mmax20000_nmax20000_nodes16_ntask5.txt -------------------------------------------------------------------------------- /examples/postprocess/scalapack/parse_plot_perfmodel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/parse_plot_perfmodel.sh -------------------------------------------------------------------------------- /examples/postprocess/scalapack/parse_plot_tunercompare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/parse_plot_tunercompare.sh -------------------------------------------------------------------------------- /examples/postprocess/scalapack/pdsyevx_08K_L_V_01_32_NS10_tasks11.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/pdsyevx_08K_L_V_01_32_NS10_tasks11.out -------------------------------------------------------------------------------- /examples/postprocess/scalapack/pdsyevx_08K_L_V_01_32_NS110_tasks1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/pdsyevx_08K_L_V_01_32_NS110_tasks1.out -------------------------------------------------------------------------------- /examples/postprocess/scalapack/pdsyevx_08K_L_V_01_32_NS20_tasks11.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/pdsyevx_08K_L_V_01_32_NS20_tasks11.out -------------------------------------------------------------------------------- /examples/postprocess/scalapack/pdsyevx_08K_L_V_01_32_NS220_tasks1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/pdsyevx_08K_L_V_01_32_NS220_tasks1.out -------------------------------------------------------------------------------- /examples/postprocess/scalapack/plot_history_scalapack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/plot_history_scalapack.m -------------------------------------------------------------------------------- /examples/postprocess/scalapack/plot_optimum_MLA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/plot_optimum_MLA.m -------------------------------------------------------------------------------- /examples/postprocess/scalapack/plot_optimum_MLA_40000_10tasks_10samples.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/plot_optimum_MLA_40000_10tasks_10samples.m -------------------------------------------------------------------------------- /examples/postprocess/scalapack/plot_optimum_MLA_SYEVX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/plot_optimum_MLA_SYEVX.m -------------------------------------------------------------------------------- /examples/postprocess/scalapack/plot_optimum_MLAvsSingle_QR_40000_10tasks_10samples.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/plot_optimum_MLAvsSingle_QR_40000_10tasks_10samples.m -------------------------------------------------------------------------------- /examples/postprocess/scalapack/plots/hist_tuners_scalapack_mmax20000_nmax20000_nodes16_ntask10_nrun10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/plots/hist_tuners_scalapack_mmax20000_nmax20000_nodes16_ntask10_nrun10.pdf -------------------------------------------------------------------------------- /examples/postprocess/scalapack/plots/hist_tuners_scalapack_mmax40000_nmax40000_nodes64_ntask10_nrun10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/plots/hist_tuners_scalapack_mmax40000_nmax40000_nodes64_ntask10_nrun10.pdf -------------------------------------------------------------------------------- /examples/postprocess/scalapack/plots/models_scalapack_mmax20000_nmax20000_nodes16_ntask5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/plots/models_scalapack_mmax20000_nmax20000_nodes16_ntask5.pdf -------------------------------------------------------------------------------- /examples/postprocess/scalapack/plots/tuners_scalapack_mmax20000_nmax20000_nodes16_ntask10_nrun10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/plots/tuners_scalapack_mmax20000_nmax20000_nodes16_ntask10_nrun10.pdf -------------------------------------------------------------------------------- /examples/postprocess/scalapack/plots/tuners_scalapack_mmax40000_nmax40000_nodes64_ntask10_nrun10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/plots/tuners_scalapack_mmax40000_nmax40000_nodes64_ntask10_nrun10.pdf -------------------------------------------------------------------------------- /examples/postprocess/scalapack/scalapack_MLA_optimum_gflops.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/scalapack_MLA_optimum_gflops.eps -------------------------------------------------------------------------------- /examples/postprocess/scalapack/scalapack_MLA_optimum_time.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/scalapack_MLA_optimum_time.eps -------------------------------------------------------------------------------- /examples/postprocess/scalapack/scalapack_parse_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/scalapack_parse_results.py -------------------------------------------------------------------------------- /examples/postprocess/scalapack/scalapack_plot_performancemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/scalapack_plot_performancemodel.py -------------------------------------------------------------------------------- /examples/postprocess/scalapack/scalapack_plot_performancemodel_tex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/scalapack_plot_performancemodel_tex.py -------------------------------------------------------------------------------- /examples/postprocess/scalapack/scalapack_plot_tunercompare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/scalapack_plot_tunercompare.py -------------------------------------------------------------------------------- /examples/postprocess/scalapack/scalapack_plot_tunercompare_tex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/scalapack_plot_tunercompare_tex.py -------------------------------------------------------------------------------- /examples/postprocess/scalapack/scalapack_qr_MLA_optimum_64nodes.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/scalapack_qr_MLA_optimum_64nodes.eps -------------------------------------------------------------------------------- /examples/postprocess/scalapack/tuners_scalapack_mmax20000_nmax20000_nodes16_ntask10.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/tuners_scalapack_mmax20000_nmax20000_nodes16_ntask10.pkl -------------------------------------------------------------------------------- /examples/postprocess/scalapack/tuners_scalapack_mmax20000_nmax20000_nodes16_ntask10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/tuners_scalapack_mmax20000_nmax20000_nodes16_ntask10.txt -------------------------------------------------------------------------------- /examples/postprocess/scalapack/tuners_scalapack_mmax40000_nmax40000_nodes64_ntask10.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/tuners_scalapack_mmax40000_nmax40000_nodes64_ntask10.pkl -------------------------------------------------------------------------------- /examples/postprocess/scalapack/tuners_scalapack_mmax40000_nmax40000_nodes64_ntask10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/scalapack/tuners_scalapack_mmax40000_nmax40000_nodes64_ntask10.txt -------------------------------------------------------------------------------- /examples/postprocess/superlu_dist/a.out_superlu_MLA_MO_nodes8_cores32_nprocmin_pernode1_nrun80_GPTune_search_more_samples4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/superlu_dist/a.out_superlu_MLA_MO_nodes8_cores32_nprocmin_pernode1_nrun80_GPTune_search_more_samples4 -------------------------------------------------------------------------------- /examples/postprocess/superlu_dist/a.out_superlu_MLA_SO_nodes32_cores32_nprocmin_pernode4_nrun20_GPTune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/superlu_dist/a.out_superlu_MLA_SO_nodes32_cores32_nprocmin_pernode4_nrun20_GPTune -------------------------------------------------------------------------------- /examples/postprocess/superlu_dist/a.out_superlu_MLA_SO_nodes32_cores32_nprocmin_pernode4_nrun20_hpbandster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/superlu_dist/a.out_superlu_MLA_SO_nodes32_cores32_nprocmin_pernode4_nrun20_hpbandster -------------------------------------------------------------------------------- /examples/postprocess/superlu_dist/a.out_superlu_MLA_SO_nodes32_cores32_nprocmin_pernode4_nrun20_opentuner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/superlu_dist/a.out_superlu_MLA_SO_nodes32_cores32_nprocmin_pernode4_nrun20_opentuner -------------------------------------------------------------------------------- /examples/postprocess/superlu_dist/a.out_superlu_single_MO_nodes8_cores32_nprocmin_pernode1_nrun80_GPTune_search_more_samples4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/superlu_dist/a.out_superlu_single_MO_nodes8_cores32_nprocmin_pernode1_nrun80_GPTune_search_more_samples4 -------------------------------------------------------------------------------- /examples/postprocess/superlu_dist/a.out_superlu_single_SO(memory)_nodes8_cores32_nprocmin_pernode1_nrun80_GPTune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/superlu_dist/a.out_superlu_single_SO(memory)_nodes8_cores32_nprocmin_pernode1_nrun80_GPTune -------------------------------------------------------------------------------- /examples/postprocess/superlu_dist/line_colors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/superlu_dist/line_colors.m -------------------------------------------------------------------------------- /examples/postprocess/superlu_dist/pareto_superlu.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/superlu_dist/pareto_superlu.eps -------------------------------------------------------------------------------- /examples/postprocess/superlu_dist/pareto_superlu_MLA.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/superlu_dist/pareto_superlu_MLA.eps -------------------------------------------------------------------------------- /examples/postprocess/superlu_dist/parse_plot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/superlu_dist/parse_plot.sh -------------------------------------------------------------------------------- /examples/postprocess/superlu_dist/plot_pareto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/superlu_dist/plot_pareto.m -------------------------------------------------------------------------------- /examples/postprocess/superlu_dist/plot_pareto_MLA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/superlu_dist/plot_pareto_MLA.m -------------------------------------------------------------------------------- /examples/postprocess/superlu_dist/plots/hist_tuners_superlu_dist_nodes32_ntask7_nrun20.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/superlu_dist/plots/hist_tuners_superlu_dist_nodes32_ntask7_nrun20.pdf -------------------------------------------------------------------------------- /examples/postprocess/superlu_dist/plots/tuners_superlu_dist_nodes32_ntask7_nrun20.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/superlu_dist/plots/tuners_superlu_dist_nodes32_ntask7_nrun20.pdf -------------------------------------------------------------------------------- /examples/postprocess/superlu_dist/superlu_dist_parse_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/superlu_dist/superlu_dist_parse_results.py -------------------------------------------------------------------------------- /examples/postprocess/superlu_dist/superlu_dist_plot_tunercompare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/superlu_dist/superlu_dist_plot_tunercompare.py -------------------------------------------------------------------------------- /examples/postprocess/superlu_dist/superlu_dist_plot_tunercompare_tex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/superlu_dist/superlu_dist_plot_tunercompare_tex.py -------------------------------------------------------------------------------- /examples/postprocess/superlu_dist/tuners_superlu_dist_nodes32_ntask7.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/superlu_dist/tuners_superlu_dist_nodes32_ntask7.pkl -------------------------------------------------------------------------------- /examples/postprocess/superlu_dist/tuners_superlu_dist_nodes32_ntask7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/examples/postprocess/superlu_dist/tuners_superlu_dist_nodes32_ntask7.txt -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/flake.nix -------------------------------------------------------------------------------- /gptuneclcm/lcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/gptuneclcm/lcm.c -------------------------------------------------------------------------------- /gptuneclcm/lcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/gptuneclcm/lcm.h -------------------------------------------------------------------------------- /patches/GPy/choleskies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/patches/GPy/choleskies.py -------------------------------------------------------------------------------- /patches/GPy/coregionalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/patches/GPy/coregionalize.py -------------------------------------------------------------------------------- /patches/GPy/stationary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/patches/GPy/stationary.py -------------------------------------------------------------------------------- /patches/autotune/problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/patches/autotune/problem.py -------------------------------------------------------------------------------- /patches/opentuner/manipulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/patches/opentuner/manipulator.py -------------------------------------------------------------------------------- /patches/parmetis/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/patches/parmetis/CMakeLists.txt -------------------------------------------------------------------------------- /patches/parmetis/metis_64bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/patches/parmetis/metis_64bit.h -------------------------------------------------------------------------------- /patches/ptscotch/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/patches/ptscotch/common.c -------------------------------------------------------------------------------- /patches/ptscotch/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/patches/ptscotch/common.h -------------------------------------------------------------------------------- /patches/scikit-optimize/space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/patches/scikit-optimize/space.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_crusher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/requirements_crusher.txt -------------------------------------------------------------------------------- /requirements_frontier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/requirements_frontier.txt -------------------------------------------------------------------------------- /requirements_intel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/requirements_intel.txt -------------------------------------------------------------------------------- /requirements_lite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/requirements_lite.txt -------------------------------------------------------------------------------- /requirements_mac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/requirements_mac.txt -------------------------------------------------------------------------------- /requirements_perlmutter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/requirements_perlmutter.txt -------------------------------------------------------------------------------- /requirements_summit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/requirements_summit.txt -------------------------------------------------------------------------------- /requirements_tmp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/requirements_tmp.txt -------------------------------------------------------------------------------- /run_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/run_env.sh -------------------------------------------------------------------------------- /run_env_no_mpi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/run_env_no_mpi.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/setup.py -------------------------------------------------------------------------------- /todo.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gptune/GPTune/HEAD/todo.org --------------------------------------------------------------------------------