Ben Frederickson
Ben Frederickson
@ezyang - this shouldn't be happening, we have a control-c handler https://github.com/benfred/py-spy/blob/a83887268f06b8735b5b115617f3632220d7a090/src/main.rs#L196 that should detect the control-c and then trigger a graceful cleanup (including resuming any suspended processes). What OS...
it looks like libproc is failing to build here w/ `fatal error: 'libproc.h' file not found` . This seems to be the same error as https://github.com/andrewdavidmackenzie/libproc-rs/issues/82 . I just built...
> does it make sense to try to remove the dependency on libproc-rs? py-spy isn't actually using libproc directly, libproc is being used by the `remoteprocess` and `proc-maps` dependencies of...
It seems like you got pretty far here! > Failed to get traces failed to get os threadid The issue here seems to be matching the OS thread id to...
With the `--native` option, we need to be able to get a mapping between pthread_id and the OS thread_id - so that we can join the native stack (which we...
You can pass `--idle` to the command line arguments, and those frames won't get filtered out from the results - does this work for you?
It seems like the issues in GHA might be related to SIP on OSX - building python from source myself and I can profile python 3.11 on OSX
Do you have a reproducing script that you can share ? Also what operating system, and python version are you using?
it looks like you're passing a (user, items) matrix to the partial_fit_items - but the method expects a (items, users) matrix. Does it work if you create it like ```...
Are you using the GPU model (like does `model.__class__` show `implicit.gpu.als.AlternatingLeastSquares`? The GPU code doesn't have this method implemented - but you can convert to a CPU model with `model.to_cpu()`...