Nikongen

Results 11 comments of Nikongen

I use only two pins in my Code (17 and 24) It was just a Test pogramm. I checked more then 3 Times of i Used Pin 24 Twice. I...

``` class c_GPIO { public enum IN : byte { GPIO24 = 24 }; public enum OUT : byte { GPIO17 = 17 }; //GPIO IN GPIOMem in_gpio24; //GPIO OUT...

In Marlintool.sh change http://downloads-02.arduino.cc to https://www.arduino.cc/download_handler.php?f=/ in getArduinoToolchain() For me it was 2 times in line 30 and 32

Almost 1 year past since the upper post. Any news on publishing on Open VSX? As of today a can't find the UMLet extension there (or VS Codium Marketplace). EDIT:...

Yes, took me a while to find the curl method... Btw, thanks for the nice project. I am using this inside a podman Kube/pod and it works like a charm....

Hi, i ran this code to test my installation. I cannot reproduce this problem. My fit results seem fine ```python import numpy as np import pygpufit.gpufit as gf print('CUDA available:...

I checked again. With pyGpufit it is not possible to use a data type other than `np.loat32` (see https://github.com/gpufit/Gpufit/issues/144) Still can not reproduce the issue. If the number of fits...

Small script to run the problem size of @DDAWX a lot of times, to check if I see a huge error at some point. All results are fine ```python import...

Comparing https://github.com/gpufit/Gpufit/blob/a0bd66c365468c7fca4b8f0511597907cf2c0274/Cpufit/python/pycpufit/cpufit.py#L249-L283 to https://github.com/gpufit/Gpufit/blob/a0bd66c365468c7fca4b8f0511597907cf2c0274/Gpufit/python/pygpufit/gpufit.py#L243-L277 I see - a few lines 273 & 273 are in commented out in `pycpufit.py`. - indexed used for `(c|g)pufit_func).argtypes` unchanged from in [line 259](https://github.com/gpufit/Gpufit/blob/a0bd66c365468c7fca4b8f0511597907cf2c0274/Cpufit/python/pycpufit/cpufit.py#L259). (probably...

Option 1 does not work, because of how `ctypes._CFuncPtr.argtypes` works. See [Python Docs](https://docs.python.org/3/library/ctypes.html#ctypes._CFuncPtr.argtypes)