Ihar Hubchyk
Ihar Hubchyk
We need to consider this as all our functions have AVX and SSE so ideally we shouldn't face switching but idea is valid for a discussion.
No-no, I understand your concern. What I meant is that as of now we have all functions which are implemented in both AVX and SSE so if we run the...
@0x72D0 we could just modify such code: ```cpp #ifdef PENGUINV_AVX_SET #define AVX_CODE( code ) \ if ( simdType == avx_function ) { \ code; \ put instruction here
I put this issue to WishList as it's not so urgent but it's good to review in future for sure.
Include `std::srand(std::time(nullptr));` line before running the tests with needed `#include ` header inclusion.
Hi, @MatthewMcGonagle would you like to implement this as well?
By the way, @MatthewMcGonagle , have you tested Rotate function on some example? Ideal example is to have black image with white rectangle in the center. Rotate image to see...
@MatthewMcGonagle would you like to have a try for this issue since you are very familiar with FFT code?
Not really. We need our own simpler API (wrapper) for this as QT file compilation is different but it's pretty close to what I did in the example.
Thinking about the structure for future UI basement. There is an idea of file structure: Base class: ```bash src/ui/ui.h src/ui/ui.cpp ``` QT class ```bash src/ui/qt/ui.h src/ui/qt/ui.cpp ``` We need this...