Charles-Francois Natali
Charles-Francois Natali
…ollover. NTPv3 has a rollover in 2036 - see https://en.wikipedia.org/wiki/Network_Time_Protocol#Timestamps. Raise a specific exception if the system time is beyond that rollover, to make it easier for users to understand...
Hi! First, thanks for the amazing work! I understand the motivation, but I think that having `unordered_map` try to automatically pick between the node and flat implementations is error prone:...
Disabling core dumps in the child process makes tests significantly faster if the process crashes while core dumps are enabled, in particular when the address space is large or dumping...
CFQ was removed from 5.x kernel, so we need to silently ignore missing CFQ statistics. Before: ``` [----------] 1 test from CgroupsIsolatorTest [ RUN ] [...] CgroupsIsolatorTest.ROOT_CGROUPS_BlkioUsage W0824 21:58:36.604790 308667...
[Magic Trace](https://github.com/janestreet/magic-trace) is an amazing tool using Intel PT to render execution traces, see https://github.com/janestreet/magic-trace?tab=readme-ov-file#getting-started The book mentions that Intel PT has poor support, but this tool definitely closes a...
Hi! I noticed that the default RSS CPU afffinity `rss_cpus=cores` - doesn't seem to ignore isolated cores, i.e. those marked with the `isolcpus` kernel command-line option. Which is a bit...
### Bug description As of GH-13962, `TQDMProgressBar` calls [tqdm.refresh instead of tqdm.update](https://github.com/Lightning-AI/pytorch-lightning/blob/b554e9915aa9868bf62ae8feb2df0543272c1b3f/src/lightning/pytorch/callbacks/progress/tqdm_progress.py#L464), explicitly setting `n`: ``` if not bar.disable: bar.n = value bar.refresh() ``` However, I believe the proper API...