Robin Christ
Robin Christ
Working example here: https://godbolt.org/z/rPbr91Gfb Consider the following code: ``` #include template void fma_foo( void* x, void* y, void* z, void* target ) { VecT res = enoki::fmadd(enoki::load(x), enoki::load(y), enoki::load(z)); enoki::store(target,...
For educational purposes, I have implemented an Overlap-Save FFT using KFR, however, I have experienced very weird issues. Take the code for Overlap-Add based on complex to complex FFT: ```...
Assume we have the following example: ``` #include #include "taskflow/taskflow/core/executor.hpp" #include "taskflow/taskflow/core/semaphore.hpp" #include "taskflow/taskflow/taskflow.hpp" int main() { tf::Executor exec(24); tf::Taskflow flow; tf::Semaphore semaphore(8); for(size_t i = 0; i < 5;...
I was running into issues where my application crashed with `std::terminate()`. After some debugging I found out that in one task an exception is thrown. I switched from `silent_dispatch()` to...
Yeah... once again: Exception handling. There are a couple of issues about this, e.g. #72 or #193 My proposal: Make exception handling optional and allow the user to specify the...
Hi, I want to apply SHExpandLSQ to a complex valued array. I have understood that SHExpandLSQ only takes real input, so I'm doing separate fits on the real and imaginary...
I was trying to include quantum simply as a subproject, but I can even get it to work in a very reduced example. First approach (what *should* work for a...
Hi, It would be great if there were helpers to work with scalars, e.g. if `multiplies` allowed to multiply a sequence with a scalar Alternatively there could be a `fill`...
I'm using cpptoml to parse config files for my application. I do want to handle a file which could not be opened specially. A file, which could not be opened,...
Hi, It is currently not possible to build the NAN examples, because lines like `cons->NewInstance(argc, argv)` are frequently used. However, NewInstance is deprecated and `Nan::NewInstance(cons, argc, argv).ToLocalChecked()` or similar should...