branch: master 「№60712」
Commited by: Daniel Farrell
GitHub commit link: 「fae3354071a50972」 「№3920」
Difference from previous tested commit:  code diff
Commit date: 2019-04-16 15:20:51

Merge pull request #3920 from RosettaCommons/danpf/fix_sigmoidfwd Fix improper sigmoid function fwd file

...


branch: master 「№60711」
Commited by: jkleman
GitHub commit link: 「7c2ffde2264607e3」 「№3921」
Difference from previous tested commit:  code diff
Commit date: 2019-04-16 13:20:20

Merge pull request #3921 from RosettaCommons/jkleman/SciBen_green4debug making sure debug versions pass, also in template

...


branch: master 「№60710」
Commited by: Jeliazko Jeliazkov
GitHub commit link: 「6ff2da754c54c162」 「№3918」
Difference from previous tested commit:  code diff
Commit date: 2019-04-14 08:35:51

Merge pull request #3918 from RosettaCommons/lqtza/fix-some-plot-lhoc-assumptions minor fixes in LHOC plotting script

...


branch: master 「№60709」
Commited by: Jaume Bonet
GitHub commit link: 「0abba38eaedc7d47」 「№3901」
Difference from previous tested commit:  code diff
Commit date: 2019-04-13 02:32:53

Merge pull request #3901 from RosettaCommons/jaumebonet/SSSE fixing SetSecStructEnergies parse_my_tag adding verbosity to NubInitioMover

...


branch: master 「№60708」
Commited by: Vikram K. Mulligan
GitHub commit link: 「b30ab1b187951c48」
Difference from previous tested commit:  code diff
Commit date: 2019-04-11 21:59:56

beautifying

...


branch: master 「№60707」
Commited by: Sergey Lyskov
GitHub commit link: 「3acf451a7646f7f5」 「№3466」
Difference from previous tested commit:  code diff
Commit date: 2019-04-11 17:06:29

Merge pull request #3466 from RosettaCommons/sergey/scientific adding support for `debug` scientific tests

...


branch: master 「№60706」
Commited by: Vikram K. Mulligan
GitHub commit link: 「d5377ee795121486」 「№3916」
Difference from previous tested commit:  code diff
Commit date: 2019-04-11 14:03:29

Merge pull request #3916 from RosettaCommons/vmullig/add_pack_tests_for_current_default_sfxn Add packing performance tests for the current default scorefunction. Currently, we have no way of knowing if changes to the current scorefunction hurt packing speed.

...


branch: master 「№60705」
Commited by: jkleman
GitHub commit link: 「7470db6228781f59」 「№3915」
Difference from previous tested commit:  code diff
Commit date: 2019-04-10 13:18:57

Merge pull request #3915 from RosettaCommons/jkleman/SciBen_lipid_acc mp_lipid_acc: setting default to failure if no output generated

...


branch: master 「№60704」
Commited by: Shannon Smith
GitHub commit link: 「6f895797231afabd」 「№3908」
Difference from previous tested commit:  code diff
Commit date: 2019-04-10 11:25:53

Merge pull request #3908 from RosettaCommons/remotes/origin/shannontsmith/backrub_fix fix typo in "perserve_detailed_balance" to "preserve_detailed_balance…

...


branch: master 「№60703」
Commited by: Vikram K. Mulligan
GitHub commit link: 「ba273e391c38e606」 「№3911」
Difference from previous tested commit:  code diff
Commit date: 2019-04-10 01:35:55

Merge pull request #3911 from RosettaCommons/vmullig/no_strings_in_tight_inner_loops Remove a string-string comparison in a tight inner loop in the packer.

...


branch: master 「№60702」
Commited by: Vikram K. Mulligan
GitHub commit link: 「45d684cd82af6bf2」 「№3909」
Difference from previous tested commit:  code diff
Commit date: 2019-04-09 13:45:10

Merge pull request #3909 from RosettaCommons/vmullig/fix_pose_copy_error Fix a really stupid mistake that I introduced in packer cleanup with nondecomposible scoreterms. A cleanup function was receiving a copy of a pose instead of an instance of the pose to clean up. So it would nicely clean up the copy, then promptly delete it.

...


branch: master 「№60701」
Commited by: Rhiju Das
GitHub commit link: 「0121fdd68af9d279」 「№3906」
Difference from previous tested commit:  code diff
Commit date: 2019-04-09 12:42:35

Merge pull request #3906 from RosettaCommons/rhiju/build_a_fold hotfix to allow loop_close (6D) to be used along with -virtual_anchor_docking in rna_denovo + integration tests that change are expected (Due to update of RNA secondary structure) or timeout. + one set of unit tests (linux.clang.unit CyclicGeometry...) failed due to timeout on test server; presumably will be rescued upon merge to master as other unit test implementations like linux.gcc.unit worked fine.

...


branch: master 「№60700」
Commited by: Vikram K. Mulligan
GitHub commit link: 「94033fd487b55dbb」 「№3880」
Difference from previous tested commit:  code diff
Commit date: 2019-04-06 21:56:29

Merge pull request #3880 from RosettaCommons/vmullig/tensorflow_link Add ability to link Tensorflow's C libraries, to allow evaluation of feedforward neural networks on CPU or GPU Note that this is _not_ related to (or intended to compete with) the work being done to evaluate the Rosetta scoring function on the GPU using Torch. This is intended to allow evaluation within Rosetta of Tensorflow neural networks that were previously trained outside of Rosetta, for machine learning-related applications. Tasks: - [x] Add headers for C api, - [x] Add linker command for linking the prebuilt CPU or GPU Tensorflow binaries. - [x] Ensure that `extras=tensorflow` defines `USE_TENSORFLOW`. - ~~It might be good to _also_ have `extras=tensorflow` define `TENSORFLOW_CPU`, and `extras=tensorflow_gpu` define `TENSORFLOW_GPU`. I can conceive of situations in which a Rosetta developer might want to bundle work differently if it's going to be evaluated on a CPU _vs._ on a GPU.~~ --> There's not actually a good way to know which TensorFlow library is being linked. It just depends on the `LD_LIBRARY_PATH` environment variable. The API is the same for both versions. - [x] Add basic pilot app to test successful linking. - [x] Add pilot apps to test functionality. - [x] Integration test. - [x] Add tensorflow integration test flavour. - [x] Add build test for `extras=tensorflow`. (Note that `extras=tensorflow_gpu` will not be tested until we get GPU nodes on the test server.) - [x] refactoring `integration.py` and deprecate `--mpi-tests` in favor of more general `--suffix` option - [x] Switch pilot app output to use tracer. Down the road we'll add a good Rosetta-side interface for Tensorflow calculations, but first we want to do some experiments and see what works and what doesn't. So for now, our pilot apps will be making Tensorflow function calls directly. @lyskov @JackMaguire Note: I confirmed with Dennis Hanson at UW Comotion that this is kosher, given the Rosetta and Tensorflow licences.

...


branch: master 「№60699」
Commited by: Andy Watkins
GitHub commit link: 「dfe4ffc992818823」 「№3905」
Difference from previous tested commit:  code diff
Commit date: 2019-04-06 17:13:58

Merge pull request #3905 from RosettaCommons/revert-3896-tjbrunette/junc_filter Revert "Tjbrunette/junc filter"

...


branch: master 「№60698」
Commited by: Sergey Lyskov
GitHub commit link: 「8f8363801cd1831c」 「№3904」
Difference from previous tested commit:  code diff
Commit date: 2019-04-06 00:44:32

Merge pull request #3904 from RosettaCommons/sergey/f fixing imports in scientific tests scripts

...


branch: master 「№60697」
Commited by: Andy Watkins
GitHub commit link: 「a1f266ca2a779d9d」 「№3899」
Difference from previous tested commit:  code diff
Commit date: 2019-04-06 00:36:19

Merge pull request #3899 from RosettaCommons/everyday847/aramid_substitution_mover Aramid substitution mover

...


< 1 .. 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 .. 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