Eyal Rozenberg
Eyal Rozenberg
So, what would this entail?: * A `cuda::memory::pool_t` class (perhaps `cuda::memory::device::pool_t`?) * `atttribute_t` and `attributes_t` inner classes of `pool_t` * Possible changes to: * pointer class * the `peer_to_peer` namespace...
Note: Need some test/example program coverage...
Not actually fixed... we had only added allocation, not deallocation :-(
Jittify has some capabilities we don't. For example - it has some support for reflected instantiation of templates. Also, need to make sure we offer all of those standard-C-library-header snippets...
So, this is resolved on the driver-wrappers branch. The reason you're seeing so many notifications here is that that branch gets routinely rebased off of development.
So, what's not covered here, but provided by jitify? Here is a partial list: * [ ] Cache of compiled programs which you can lookup in (using names ?) *...
Hmm. ``` cd /path/to/cuda-api-wrappers/ ccmake -B build cmake --install build ``` I guess it may not be obvious to people who don't have experience with CMake...
> I want the dependency to be in the project as a submodule 1. Install cuda-api-wrappers to `/some/where/cuda-api-wrappers` 2. Set `CMAKE_PREFIX_PATH` for your build to include `/some/where/cuda-api-wrappers` 3. `find_package(CUDAToolkit)` and...
@EmmanuelMess : Yes, that could be skipped, if I adapted the CMakeLists.txt for such use. That should be a separate issue... #382.
Actually, I will add some guidance for using the library to the README.md, so this stays open for now. And I want to thank you for pointing this out, I've...