Open ernestum opened 11 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Comparison is base (
a8b079c
) 95.69% compared to head (7e618b0
) 95.71%.:exclamation: Current head 7e618b0 differs from pull request most recent head 2cfd7f1. Consider uploading reports for the commit 2cfd7f1 to get more accurate results
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
I think the coverage warning in this one is spurious. Can you merge this @AdamGleave ?
I think the coverage warning in this one is spurious. Can you merge this @AdamGleave ?
Looks like the issue is that test_sqil_performance_continuous
is being skipped. This is going to continue to cause a problem in all subsequent PRs requiring manual override -- we try and enforce 100% test coverage to make sure nothing is being unintentionally not run. I think you can just add a # pragma: no cover
to fix this. If that doesn't work LMK and I can try to troubleshoot.
Hello, what's the state of this PR?
This PR fixes a bug in the
safe_to_tensor
utility: previously it did not move tensors to a new device according to thedevice
kwarg which caused issues when there is more than one device available. The bug went unnoticed for a long while since our circleCI runners do not have GPUs enabled.Thanks to @tomtseng for drafting a fix for this in #828