yves-surrel
yves-surrel
Since I have update to Mojave, I get building failures on CPU device. If I run ```import numpy as np import pyopencl as cl a_np = np.random.rand(50000).astype(np.float32) b_np = np.random.rand(50000).astype(np.float32)...
In the recent OpenCL backend, the kernel is enqueued with: ``` result = clEnqueueNDRangeKernel(app->configuration.commandQueue[0], axis->kernel, 3, 0, global_work_size, local_work_size, 0, 0, 0); ``` i.e. the last three arguments are set...
I am an end-user needing GPU speed for my computations in Python. Until today, I have been pretty satisfied with the excellent pyOpenCL bindings and clFFT library. I recently discovered...
Trying to install gpyfft on a new Mac Mini M1. Successfully built and compiled sources ``` python setup.py build python setup.py install ``` with no errors. When importing in python,...
Hi I managed (painfully) to have ```pip install .``` compile the whole thing without error, on Windows 10 with the latest Microsoft Build Tools. But importing gpyfft in python 3.7.6...
Changing the shell_port, iopub_port etc. in jupyter_console_config.py does not work, neither does using `jupyter console --iopub:xxxx` in the command line. After investigation, it comes from the `cache_ports` attribute of `KernelManager`:...
Self explanatory
It would be nice to have also a wrapper for the "native" Vulkan backend. Maybe this [Vulkan python wrapper](https://github.com/EthicalML/vulkan-kompute) could be of some help.
In example `widgets\actionbar.py`, if an`ActionSeparator` is added, shrinking the window to have ActionOverflow firing makes the window become black and then Kivy crashes. ``` from kivy.base import runTouchApp from kivy.lang...
In order to use instant_camera.SetBufferFactory, one needs to subclass a pylon.BufferFactory that does not seem to be accessible or implemented anywhere...