From e4bfd83e73ad6e02ebe677a7f2b52ae50f27585e Mon Sep 17 00:00:00 2001 From: sambenfredj <100685091+sambenfredj@users.noreply.github.com> Date: Thu, 10 Mar 2022 00:58:13 +0100 Subject: [PATCH] Improve runtime (#44) * expose max workers parameter to cli * update triqler package to fix the issue with calculating PEPs which is extremely slow * make grid search run with multithreading * test max_workers cli argument * fix format * update triqler Co-authored-by: Siegfried Gessulat Co-authored-by: Tobias --- tests/system_tests/test_cli.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/system_tests/test_cli.py b/tests/system_tests/test_cli.py index 83ee743f..7ef08dcc 100644 --- a/tests/system_tests/test_cli.py +++ b/tests/system_tests/test_cli.py @@ -69,6 +69,8 @@ def test_cli_options(tmp_path, scope_files): "--keep_decoys", "--subset_max_train", "50000", + "--max_workers", + "3", ] subprocess.run(cmd, check=True)