Tan Li Boon
Tan Li Boon
Does it really require jinja2 at the CMake configuration step? I'd like to try building this without having to install any Python dependencies if possible.
I need to write to the same database from several threads. Sometimes, the threads encounter SQLITE_LOCKED and a `std::system_error` is thrown, but this is a recoverable issue and I would...
`Vulkan_FFT.cpp` has many cases of code that looks like this: ``` if (file_output) fprintf(output, "Some string %d", some_value); printf( "Some string %d", some_value); ``` This seems inefficient. Instead, simply print...
- Creation of the file `benchmark_alexnet.py` under examples/cifar10. It's originally a copy of alexnet.py. - A neural network has been written in that file that conforms to the alexnet samples...
- Move setup code from Driver::CreateWorkers to Worker::Setup and debug any issues that may arise.
Regarding https://github.com/edghyhdz/silver-sniffle/blob/main/src/Client.cpp#L463 Would `string.data()` work? Otherwise, I suppose `memcpy` would be more efficient as well.
This merge request seeks to organize the plugin interface of OpenRAVE. The functions that can be called on a plugin are now collected into a virtual class that all plugins...
The [current regex](https://github.com/rdiankov/openrave/blame/production/src/libopenrave-core/environment-core.h#L4083) used to detect if a string is a URI (last revised 10 years ago) [does not infact work as intended](https://regex101.com/r/UUjvlm/1). Due to that fact, there are multiple...
When doing a cmake install of the static build, the headers are not included as a property in the `simdjson_static` target. As a result, when linking against the `simdjson_static` target...