Ben Burns
Ben Burns
@dmitryduev has there been any progress on this issue? If it helps any, it seems to be an issue related to pynvml and NVIDIA drivers later than version 472.12. That...
@dmitryduev on further investigation, I think the issue is that the `wandb` sdk bundles an old version of `pynvml` in `wandb.vendor.pynvml`. Rather than bundling the old version, `wandb` should instead...
I participate in a reinforcement learning community via discord, and the common (horribly ugly) workaround in that group is to edit the wandb code in `site-packages` and comment out any...
> Many thanks for the updates, @benjamincburns and @PeterKeffer! > > @PeterKeffer: would you mind trying to update the driver to 516.94 and see if it still crashes? > >...
This cropped up for me in the [trufflesuite/truffle](https://github.com/trufflesuite/truffle) monorepo because we were running `lerna bootstrap` as `npx lerna bootstrap` to avoid the chicken/egg problem of needing to install `lerna` as...
Swapping out the `npx ...` command for `npm exec -- ...` also seems to work around this problem.
Possibly relevant: Rocksplicator ([article](https://medium.com/@Pinterest_Engineering/open-sourcing-rocksplicator-a-real-time-rocksdb-data-replicator-558cd3847a9d), [repo](https://github.com/pinterest/rocksplicator)). I don't know how directly useful this would be as-is, but given that it's billed as a set of libraries for clustering RocksDB-backed services, I'd...
Also ICYMI in the dense commit messages, re: the new `typedoc` warnings on build of docs for `db` and `db-kit`, I've disabled those warnings successfully now and raised #5421 and...
Polyfill logic was duplicated to ensure that it would load properly under each of the different command bundles. An alternative would have been to make webpack handle injecting the polyfill,...
@cds-amal I could see making a shared polyfill module, but I think that would be a better fit for another PR. I suspect there are other polyfills that we'd want...