「view this page in B3 βῆτα server」

Revisions №62238

branch: rosetta:main 「№62238」
Commited by: lyskov-ai
GitHub commit link: 「cf532f89b6bbb7e6」
Difference from previous tested commit:  code diff
Commit date: 2026-04-30 19:55:45
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
m1.clang.python311.PyRosetta.unit m1.clang.python314.PyRosetta.unit mac.clang.python38.PyRosetta.unit ubuntu-24.04.gcc.python39.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit ubuntu.clang.python312.PyRosetta.unit ubuntu.clang.python314.PyRosetta.unit ubuntu.gcc.python310.PyRosetta.unit ubuntu.gcc.python312.PyRosetta.unit ubuntu.gcc.python313.PyRosetta.unit alpine.gcc.build.debug clang-10.clang.cxx11thread.mpi.serialization.tensorflow.build.debug gcc-10.gcc.build.debug gcc-11.gcc.build.debug gcc-11.gcc.cxx11thread.serialization.build.debug gcc-9.gcc.cxx11thread.serialization.build.debug linux.clang.python310.build.debug linux.clang.python311.build.debug linux.clang.python312.build.debug mpi mpi.serialization m1.clang.python310.build.debug m1.clang.python311.build.debug m1.clang.python39.build.debug ubuntu-24.04.clang.cxx11thread.serialization.build.debug ubuntu-24.04.gcc.build.debug ubuntu-24.04.gcc.cxx11thread.serialization.build.debug ubuntu.clang.python310.build.debug ubuntu.clang.python311.build.debug ubuntu.gcc.python310.build.debug build.header build.levels build.ninja_debug gcc-10.gcc.cxx11thread.serialization.build.release gcc-11.gcc.cxx11thread.serialization.build.release gcc-9.gcc.cxx11thread.serialization.build.release linux.clang.python39.build.release linux.gcc.python310.build.release linux.gcc.python311.build.release linux.gcc.python312.build.release linux.gcc.python39.build.release m1.clang.python310.build.release m1.clang.python311.build.release m1.clang.python39.build.release torch.gcc.torch.python39.build.release ubuntu-24.04.gcc.build.release ubuntu-24.04.gcc.cxx11thread.serialization.build.release ubuntu.clang.python310.build.release ubuntu.gcc.python310.build.release ubuntu.gcc.python311.build.release ubuntu.gcc.python313.build.release beautification code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration.ubsan integration performance profile m1.clang.python312.release.PyRosetta.MinSizeRel m1.clang.python313.release.PyRosetta.MinSizeRel m1.clang.python38.release.PyRosetta.MinSizeRel m1.clang.python39.release.PyRosetta.MinSizeRel mac.clang.python310.release.PyRosetta.MinSizeRel mac.clang.python311.release.PyRosetta.MinSizeRel mac.clang.python312.release.PyRosetta.MinSizeRel mac.clang.python38.release.PyRosetta.MinSizeRel mac.clang.python39.release.PyRosetta.MinSizeRel m1.clang.python312.release.PyRosetta.Release m1.clang.python313.release.PyRosetta.Release m1.clang.python38.release.PyRosetta.Release m1.clang.python39.release.PyRosetta.Release mac.clang.python310.release.PyRosetta.Release mac.clang.python311.release.PyRosetta.Release mac.clang.python313.release.PyRosetta.Release mac.clang.python38.release.PyRosetta.Release mac.clang.python39.release.PyRosetta.Release ubuntu.clang.python38.release.PyRosetta.Release scientific.abinitio_RosettaNMR_pcs scientific.glycan_structure_prediction scientific.mp_f19_decoy_discrimination scientific.relax_cartesian.debug scientific.stepwise_rna_favorites linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify unit.addsan unit.release gcc-11.gcc.cxx11thread.serialization.unit linux.gcc.python310.unit linux.gcc.python39.unit m1.clang.cxx11thread.serialization.unit m1.clang.python310.unit m1.clang.python311.unit m1.clang.python312.unit ubuntu.clang.python310.unit ubuntu.clang.python311.unit ubuntu.clang.unit ubuntu.gcc.python312.unit ubuntu.gcc.python313.unit util.apps windows.build.debug windows.build.release

Explicitly delete copy constructor and assignment in Timer (#665) ## Summary `Timer::~Timer()` calls `Report()`, logging the elapsed time to a tracer or stdout. With no explicit copy policy, a copied `Timer` would produce a second `Report()` on its own destruction — silently logging a duplicate timing entry for the same measured interval. `tag_` and `t_` are non-owning pointers (no `delete` in the destructor), so there is no memory-safety risk. The issue is purely semantic, but it is a real hazard for callers who pass or store `Timer` by value. Explicitly `= delete` the copy constructor and copy assignment to make the non-copyable intent clear. ## Test plan - [x] `basic/gpu` builds cleanly in debug mode - [x] Full debug build passes with no errors

...