Michael Aichmüller
Michael Aichmüller
So I have been digging a little into the setuptools process and noticed where the editable install breaks with skbuild: In `setuptools/command/egg_info.py` the egg-link (which needs to point to `src`...
@henryiii I could not get scikit-build to fail the editable install with the minimal python only package example from #546 . However, it did fail for a minimal cpp extension...
I have been unsure with how to bind the InfostateNode class correctly, since it doesn't have a public constructor and is constructed only by the tree. Since the tree exposes...
If I add the conan package folder for tbb to `LD_LIBRARY_PATH` it does find `tbbmalloc` as well ``` LD_LIBRARY_PATH=/u/michael.aichmueller/.conan2/p/onetb75ff22d6ae745/p/lib/:$LD_LIBRARY_PATH ldd train ... libtbbmalloc_proxy.so.2 => /u/michael.aichmueller/.conan2/p/onetb75ff22d6ae745/p/lib/libtbbmalloc_proxy.so.2 (0x00007efd7b721000) libtbb.so.12 => /u/michael.aichmueller/.conan2/p/onetb75ff22d6ae745/p/lib/libtbb.so.12 (0x00007efd7b6ca000)...
hi @jcar87 , thanks for looking into this. The behaviour of `find_package(TBB REQUIRED)` without specifying components is to select all components `tbb`, `tbbmalloc`, `tbbmalloc_proxy` according to the [official README](https://github.com/oneapi-src/oneTBB/blob/9e401d119c9422775b2267cbf133f0446493ddf7/cmake/README.md#tbbconfig---integration-of-binary-packages). The...
Hi @jcar87 , thanks for your help on this. I linked as you said now only to TBB::tbb which works out of the box. I am happy to leave it...
Hi @memsharded , sorry for the late reply! I feared my post may be a little confusing. To clarify: The CPM dependencies are only `xtensor-python` and `xtensor-blas`. The former depends...
Hi @rpSebastian , I implemented PCFR+ [here](https://github.com/maichmueller/cfrainbow/blob/main/src/cfrainbow/cfr/cfr_predictive_plus.py) using open_spiel as basis a while ago. It does not reach the performance of the paper (so unsure about correctness) in e.g. Kuhn...
The same problem with bzip2 is occuring in this [stackoverflow post](https://stackoverflow.com/questions/76998638/cmake-cannot-see-the-compiler-in-conjunction-with-conan).
> Hi @maichmueller > > I think this is the issue: > > > /bin/sh: cmake: command not found > > It seems you don't have `cmake` installed in the...