branch: master 「№61128」
Commited by: Sergey Lyskov
GitHub commit link: 「8bbf20f8097f8e45」 「№4484」
Difference from previous tested commit:  code diff
Commit date: 2020-02-07 17:45:31

Merge pull request #4484 from RosettaCommons/benchmark updating Benchmark release scripts, adding file locking so multiple releases could be done in parallel by multiple back-ends

...


branch: master 「№61127」
Commited by: Rocco Moretti
GitHub commit link: 「2d8a8e2046c7cb54」 「№4476」
Difference from previous tested commit:  code diff
Commit date: 2020-02-03 17:57:32

Merge pull request #4476 from RosettaCommons/roccomoretti/fix_cppcheck_test Attempt to fix the cppcheck test. We're having issues with cryptic errors in the cppcheck test. Part of that is that the cppcheck test script has the wrong option for grep in parsing out error lines, and part of it is that cppcheck updates (1.90 in particular) changed the behavior of cppcheck. Fix that and update the "known issues" list accordingly.

...


branch: master 「№61126」
Commited by: Steven Lewis
GitHub commit link: 「a77fcb8369c9b732」 「№4477」
Difference from previous tested commit:  code diff
Commit date: 2020-02-03 16:29:11

Merge pull request #4477 from RosettaCommons/smlewis/sci_tests_minor_updates Minor language changes and typographical error fixes for scientific tests. Includes commits from Brahm so that they make it to master.

...


branch: master 「№61125」
Commited by: Steven Lewis
GitHub commit link: 「bc2199c8b3b45487」 「№4480」
Difference from previous tested commit:  code diff
Commit date: 2020-02-03 15:51:06

Merge pull request #4480 from CyrusBiotechnology/smlewis/GreenPacker_tests GreenPacker and GreedyOptMutationMover have ultrabasic unit tests to check that they don't segfault.

...


branch: master 「№61124」
Commited by: Steven Lewis
GitHub commit link: 「aaafe23d795c1705」 「№4464」
Difference from previous tested commit:  code diff
Commit date: 2020-02-01 01:53:32

Merge pull request #4464 from CyrusBiotechnology/smlewis/mangle_job_id_with_HOSTNAME This adds an option (`HOSTNAME_in_jobname`) to mangle JD2 job names with $HOSTNAME. In a context where job distribution is not being done inside Rosetta, but instead being done externally, you will run into the case where the low job numbers (like 0001) recur. Instead of managing job completion by moving them around, we can make them unique by mangling them on the host on which they occur. In containerized systems $HOSTNAME is usually set; in kubernetes specifically it includes a hash unique to the problem. The option does nothing if $HOSTNAME is not set.

...


branch: master 「№61123」
Commited by: Jack Maguire
GitHub commit link: 「80fcaed31d875d7a」 「№4436」
Difference from previous tested commit:  code diff
Commit date: 2020-01-31 20:27:11

Merge pull request #4436 from RosettaCommons/JackMaguire/AcceptToBestMover AcceptToBestMover I'm re-implementing FastDesign using rosetta_scripts instead of relax_scripts. People are generally more familiar with rosetta_scripts so this side-by-side comparison will hopefully be the "Rosetta Stone" of relax_scripts. The only functionality that does not currently exist in rosetta_scripts is the accept_to_best command, which updates the pose to the best one seen so far. This PR adds the AcceptToBestMover which wraps this simple logic into Mover boilerplate.

...


branch: master 「№61122」
Commited by: Andy Watkins
GitHub commit link: 「19b2b9260c25038d」 「№4468」
Difference from previous tested commit:  code diff
Commit date: 2020-01-31 14:12:53

Merge pull request #4468 from RosettaCommons/everyday847/fix_failing_tests Fix autoDRRAFTER integration test

...


branch: master 「№61121」
Commited by: Vikram K. Mulligan
GitHub commit link: 「2fa58f79ed5e5543」 「№4465」
Difference from previous tested commit:  code diff
Commit date: 2020-01-31 02:41:12

Merge pull request #4465 from RosettaCommons/vmullig/fix_james_helical_bundle_predict_issues_2 Fix an issue with, and add some features to, helical_bundle_predict. This PR: - [x] Fixes a silly bug in parsing FASTA files in helical_bundle_predict. - [x] Adds an option to skip residues in the native structure in alignments. - [x] Adds an option to skip residues in the generated structure in alignments. - [x] Adds integration tests for the new options. - [x] Adds documentation for the new options.

...


branch: master 「№61120」
Commited by: Vikram K. Mulligan
GitHub commit link: 「b7d5f79c34f3f657」 「№4462」
Difference from previous tested commit:  code diff
Commit date: 2020-01-30 13:49:29

Merge pull request #4462 from RosettaCommons/vmullig/multithreaded_scoring_incremental_merge3 Incremental merge 3 for multithreaded scoring The multithreaded scoring branch identified a major thread-safety issue with the hydrogen bonding code, in which data that were needed down a long series of function calls were cached in mutable storage in the energy method, then accessed down the chain. This is fundamentally non-threadsafe: if different threads are trying to score different parts of the pose at the same time, one could overwrite the data that the other cached. The proper solution is simply to pass these data down the chain of function calls. Unfortunately, due to the complexity of the etable template classes, this means modifying a _lot_ of functions. I've done the work for this, now, and want to make it a separate pull request to ensure that it only improves performance and has no effect on accuracy. Note that I've tried to do this in a way that involves a subclassed container class, so that we can add additional data in the future if we so wish _without_ having to refactor all of these dozens of template functions, simply by adding new subclasses of the container class. Note also that this might fix rare thread safety issues with multithreaded packing, so it benefits multi-threading even before we enable multithreaded scoring. - [x] Pull request #4460 must be merged before this one.

...


branch: master 「№61119」
Commited by: Vikram K. Mulligan
GitHub commit link: 「e584678417d867cf」 「№4469」
Difference from previous tested commit:  code diff
Commit date: 2020-01-28 18:32:36

Merge pull request #4469 from RosettaCommons/vmullig/another_xyz_vector_uninitialized Fix another uninitialized xyzVector error.

...


branch: master 「№61118」
Commited by: Vikram K. Mulligan
GitHub commit link: 「f01b52ba4dead724」 「№4460」
Difference from previous tested commit:  code diff
Commit date: 2020-01-28 15:21:52

Merge pull request #4460 from RosettaCommons/vmullig/multithreaded_scoring_incremental_merge2 Incremental merge 2 for multithreaded scoring This PR relaxes some of the locking of the global options system. I was overdoing it, and it was hurting multithreaded performance and performance scaling a bit. (Note that the full locking can be restored by defining `OPTIONS_COLLECTION_FULL_THREAD_SAFETY`. This is not defined by default. When `MULTI_THREADED` is defined, as it is when building with `extras=cxx11thread`, only the necessary locking occurs.) - [x] Pull request #4459 must be merged before this one. @bcov77

...


branch: master 「№61117」
Commited by: Daniel Farrell
GitHub commit link: 「dbfc6818e16b4df9」 「№4463」
Difference from previous tested commit:  code diff
Commit date: 2020-01-27 12:52:49

Merge pull request #4463 from RosettaCommons/danpf/fix_csts_blank_bs fix constraint file io if blank header

...


branch: master 「№61116」
Commited by: Vikram K. Mulligan
GitHub commit link: 「531813ae494df1ec」 「№4461」
Difference from previous tested commit:  code diff
Commit date: 2020-01-27 12:14:28

Merge pull request #4461 from RosettaCommons/vmullig/fix_maybe_uninitialized_errors Fix a couple of compilation errors in gcc/7. The gcc/7 compiler on Ubuntu 18 was complaining about uninitialized or potentially uninitalized variables in a devel protocol. This may be a false warning, since other compilers don't seem to complain, but initializing the vars shushes the warnings, and is unlikely to have any significant impact on performance given the complexity of the other stuff that these classes do.

...


branch: master 「№61115」
Commited by: Vikram K. Mulligan
GitHub commit link: 「3f087db07b24815c」 「№4459」
Difference from previous tested commit:  code diff
Commit date: 2020-01-26 04:53:13

Merge pull request #4459 from RosettaCommons/vmullig/multithreaded_scoring_incremental_merge1 Incremental merge 1 for multithreaded scoring. This pulls the changes to the RosettaThreadManager into its own pull request, to keep everything nicely compartmentalized and easy to review. See pull request #4342 for details.

...


branch: master 「№61114」
Commited by: Rocco Moretti
GitHub commit link: 「ae05cc5c462f8507」 「№4450」
Difference from previous tested commit:  code diff
Commit date: 2020-01-24 12:13:56

Merge pull request #4450 from RosettaCommons/roccomoretti/clang_tidy_4 Clang tidy: modernize-use-nullptr Another in the series of adding additional clang-tidy tests. This one is pretty much purely mechanical. The big change was to fixedarray1/fixedarray0. These were changed to default initialize instead of zero initialize. This had the knock-on effect of requiring me to convert their internal store from a C-style array to a std::array, as well as changing a few places where there were fixedsizearrays of xyzVectors (which behave differently for zero vs. default initialization.)

...


branch: master 「№61113」
Commited by: Rocco Moretti
GitHub commit link: 「4fcf80033aebbcdf」 「№4456」
Difference from previous tested commit:  code diff
Commit date: 2020-01-24 12:08:55

Merge pull request #4456 from RosettaCommons/roccomoretti/no_apply_to_pose Remove APPLY_TO_POSE usage in integration tests APPLY_TO_POSE is deprecated, and we should hopefully be removing support for it in the (nearish?) future. There are, however, two integration tests which make (non-trivial) use of it. This PR adjusts those integration tests not to use it, using the suggested replacement instead.

...


< 1 .. 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 .. 354 >

Legend:
queued Queued Test
queued for comparison Test finished running but not yet compared
running Test is Running right now
comparing Test results is now comparing with previous results
finished Test is finished without errors
failed Test failed
build Failed Test could not be run because build failed
script failed Test results is unknow because test-script failed
canceled Test was canceled