Alberto Mercurio
Alberto Mercurio
I have a custom board (actually with an ESP32, but in the future I will use an STM32 MCU) which controls a motor with 0.1 Ohms of phase resistance approximately....
Hello, I'm trying to solve and ODE with my GPU. I tested the example code present in the [DiffEqGPU.js](https://github.com/SciML/DiffEqGPU.jl) repository, and it worked fine. I have the following function to...
**Describe the bug** I'm trying to get the spectrum of a qubit inside a cavity. For certain values of coupling it works, but for others not. I think this is...
Hello, I'm yet able to fit a vector model, that is `model(x, p)` returns an array of dimensions (2, N), where N is the dimension of the x data points....
Hello, I tried to use CuArrays to fit some data. The `model(x, p)` function works great if p is a CPU Array. However the fitting procedure doesn't work. I could...
Hello, i followed this guide several times, i correctly set my MT25L128, now i want to set MT25QL512, however i does not work properly. When i program the flash memory...
Hello, I'm interested on using these tools with CUDA Arrays like ComplexF64 dense CuArray or sparse CuSparseMatrix. Following the documentation, it only needs that the array supports the following functions:...
Hello, I'm searching a fast implementation of a GPU version of the `exponentiate` function. If I run this code it does not work ```julia using LinearAlgebra using SparseArrays using CUDA...
Hello, I'm able to use this package with CUDA Arrays, since the `allowed_getindex` (for example used [here](https://github.com/JuliaDiff/FiniteDiff.jl/blob/6ff175553ac2c42d1a49bd3d995b0bcebc74085f/src/jacobians.jl#L435)) does not handle the indexing error of the CuArrays. However this slow down...
Hello, dense CuArrays are recognized as AbstractGPUArray type. Indeed, if I do ```julia using CUDA using GPUArrays A = CUDA.rand(10, 10) A isa AbstractGPUArray ``` it returns true. However, it...