etempm
etempm
> Hi, thanks for your feedback. I had a look into it and decided to give it a try (not what is a called low hanging fruit) Can't promise any...
Please run this code to see error. Without lock, it throw Access violation exception. ` private async void Test() { USearchIndex UIndex = new USearchIndex( metricKind: MetricKind.Cos, // Choose cosine...
Yes, you are right!. I limited thread count to Environment.ProcessorCount and it worked like a charm. Thank you very much!!!
Just for clarification. I will use usearch for real time face recognition over 100 ip cameras. Each camera working on own thread. With the 16 core cpu, 100 threads, real...
If i can understand what you mean, i wil be glad to do that. I see extend method in native class which is increase capacity in c#. But i did...
Ok, i am looking c code now. As i can see, a lot of functionality is missing on c# side. I can add that functions to c# wrapper. If you...
I think you mean struct index_limits_t { std::size_t members = 0; std::size_t threads_add = std::thread::hardware_concurrency(); std::size_t threads_search = std::thread::hardware_concurrency(); inline index_limits_t(std::size_t n, std::size_t t) noexcept : members(n), threads_add(t), threads_search(t) {}...
Hi, sory, I am not cpp guy. Trying to call function. I defined struct as: [StructLayout(LayoutKind.Sequential)] public struct IndexLimitsT { public ulong Members; public ulong ThreadsAdd; public ulong ThreadsSearch; }...