Konrad Gołuchowski

Results 7 comments of Konrad Gołuchowski

I managed to install pytorch from pip and set LIBTORCH variable and DYLD_LIBRARY_PATH accordingly. ``` pip install pytorch export LIBTORCH=/Users//opt/miniconda3/lib//python3.9/site-packages/torch/ export DYLD_LIBRARY_PATH=${LIBTORCH}/lib:$DYLD_LIBRARY_PAT ``` Note, I used miniconda, so your library...

I wanted to spawn_blocking task but without requirement of 'static closure, something similar to scoped thread, but run on blocking thread pool. I didn't think really deeply if there is...

Sorry for long reply! This looks great! I tested it on tokio rt and worked fine for me!

Yes, I can see that useful. I need to think how this can be achieved. Simplest idea would be to have `ClonableTypedMapValue` and `ClonableTypedMap`. Though, I would need to duplicate...

@damooo It took quite a while but I figured out the way that constraining values might work. Prepared changes in https://github.com/kodieg/typedmap/pull/9 This change allows to specify "bounds" for both keys...

Just released those changes as v0.4. Additionally one can easily add own bound types (not only for Clone, but for own traits as well).

Sorry for the delay. I implemented Clone for TypedMap with CloneBounds/SyncCloneBounds in v0.5.0 if you need really to clone the whole hashmap. Otherwise you may want to just wrap everything...