jkfindeisen

Results 31 comments of jkfindeisen

I cannot reproduce the problem. For me, the examples run just fine. Just googled "no kernel image is available for execution on the device" and got https://stackoverflow.com/questions/55538036/cuda-nvcc-no-kernel-image-is-available-for-execution-on-the-device-what-is. I always use...

- ThunderSTORM (https://github.com/zitmen/thunderstorm)

> I agree that maybe an additional gpusimul() function could be overkilling ... My impression is that it would not be overkill. Cpufit is the simulation of Gpufit in a...

Also, just being able to compute the model or the gradients at the current parameters sounds like an obvious enhancement to me. Often enough you not only need the final...

> mainly because I don't know how to make it optional, yet! So far, the C interface of Gpufit is stateless, so either one would need to add another input...

> Is it required by external bindings like python or matlab? Yes. For a good discussion see https://stackoverflow.com/questions/16730284/dll-written-in-c-vs-the-same-written-in-c You could have additionally a C++ interface but only if you use...

Btw. one workaround is SWIG. It can generate interfaces of C++ classes automatically that work as Python or Java classes but internally it uses a C interface, just automatically creates...

Another example of someone trying to use C++ class in Matlab for example. The idea would be the same for Python, C#, Java, .... He uses indices to a list...

The location on the input/output data can only be specified in the C++ interface, but not in the C interface, So I guess that will not work. It could work...

See also https://github.com/gpufit/Gpufit/pull/92