Vasyl Teliman
Vasyl Teliman
Hello. I have tried to execute some sample code taken from your habrahabr post. I have got a pretty bad results on my Linux Mint 18.3 KDE:  The whole...
Implementation of automatic bindings generator for Java. We are using [Nd4j](https://deeplearning4j.org/docs/latest/nd4j-overview) on the Java side to work with matrices. Types are being mapped as follows: - `arma::Mat` is mapped to...
Hi everyone. The issue is the following. I have to transfer ownership of an allocated data (an array) from C++ to Java. How would I do that? As a side...
If you try to compile [vulkan layers](https://github.com/google/graphicsfuzz/tree/master/third_party/vulkan_layers) using KhronosGroup/SPIRV-Tools@1fe9bcc1 commit you will get a compilation error. The reason, as it seems, is that `Fuzzer`'s API has been changed. Consider: the...
## What does this do / why do we need it? This PR install `iputils-ping` package. Without it, `protonvpn status` produces the following error: ``` Traceback (most recent call last):...
It is possible to specify a base URL with retrofit as follows: ```java var retrofit = OpenAiService.defaultRetrofit(client, om) .newBuilder() .baseUrl("https://api.groq.com/openai/") .build(); ``` However, if `baseUrl` contains any path segments (e.g....
**Is your feature request related to a problem? Please describe.** The following use-case: Given vectors A and B, return top N documents relevant to query B s.t. they are also...
## Current Behavior The database OOMs when attempting to upload a large snapshot archive file (larger than the available RAM) to S3. The OOM happens at the uploading stage specifically...
Currently, the library uses a blocking curl API and requires a separate thread pool to handle streaming. Have you considered using libcurl's [multi interface](https://curl.se/libcurl/c/libcurl-multi.html) instead? It allows one to set...