Thomas Germer

Results 140 comments of Thomas Germer

> One more thing, Numba and Cupy can be enabled together right? PyMatting uses CuPy together with Numba's CPU backend. There also is a CUDA backend for Numba, but last...

I translated the KD tree query to PyOpenCL. https://gist.github.com/99991/08bcb341bd5a47170908d8c762d559c9 Surprisingly, it is faster than Numba when using a CPU device, but the speedup on GPU is not amazing, even if...

The pull request message is clearly generated by AI. I believe that `wget-c` (as opposed to `wget -c`) is made up.

~~In the meantime, the url https://cdn.discordapp.com/attachments/1121232062708457508/1204787053892603914/cat_dog.png?ex=65d60061&is=65c38b61&hm=37c3d179a39b1eca4b8894e3c239930cedcbb965da00ae2209cca45f883f86f4& expired.~~ ~~Is there a reason why the example image is not stored in the GitHub repository as well?~~ EDIT: Probably not. Here is a...

There have been no updates in the last two months unfortunately. The authors are busy with other things.

I was using this earlier branch `pip install git+https://github.com/kashif/diffusers.git@a3dc21385b7386beb3dab3a9845962ede6765887` which worked for a while, but now the model files on huggingface have been updated and I get `AttributeError: module diffusers...

I had the same issue when using octave. Maybe this fix also works in MATLAB. **EDIT**(easier fix): Replace the line [`mxUnshareArray(A, true);`](https://github.com/dilipkay/hsc/blob/8aaae0b9e5ed136ab813c1c979e4b7ea352f24fd/mex_funs/hsc_sparsify_and_compensate.cpp#L35) in `/hsc/mex_funs/hsc_sparsify_and_compensate.cpp` with [`A = mxDuplicateArray(A);`](https://github.com/99991/hsc/blob/50876755fd3866fd31d53efc0fee35a07a28548e/mex_funs/hsc_sparsify_and_compensate.cpp#L35) I am...

Hello Tatiana, a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) would be great. Best regards, Thomas

> However, when I processed it again separately, it worked just fine... That's odd. There should not be any state that is stored between function calls which could cause such...