andrejlevkovitch
andrejlevkovitch
@jeaye I see that you start active development of this tool, so I want to you check out my prototype. I think this will very interesting for you. This prototype...
I see that some of your goals, like: match tracing, asynchronous, highlight in multiple windows - I already realize in my [plugin](https://github.com/andrejlevkovitch/vim-hl-client). But I used new features of vim8 for...
So, good luck! Unfortunately I can't help with neovim and rust - I don`t work with first and don't know the second. But if you will need any other help...
@dusty-nv yes, I know that fixes the issue, so, please, push it to repo
I simplify example to: ```c++ // main.cpp #include #include #include #include int main() { cv::Size inputSize{1, 1}; cv::Size outSize{1, 1}; // clang-format off std::vector values{ 0, 0, 0, 0, 0,...
So, I think, problem in integer overflow. See on our transformation matrix - if we change our y-move value to `2147483583.`, then all will works fine.
Yes, problem is in integer overflow. [Integer overflow](https://forums.developer.nvidia.com/t/integer-arithmetic-overflow/82347) is UB on cuda (like in c++ standard), so I just try change string that caused error from ```const int y1 =...
#2712 also not reproduced after previous fix
Unfortunately I can't reproduce this error in some separate cuda function
Affine transformation supports three types of interpolation: nearest, linear and cubic - but problem reproduce only with `INTER_LINEAR` and with not default stream only. This is very strange, because function...