CUDA QSwift Library with QR Eigenvalue solver

CUDA QSwift Library with QR Eigenvalue solver

Today, I would like to talk a bit about computing eigenvalues with CUDA, but before we begin, I would like to add a short story, that made me in fact proceed to solving this problem. It all started with my diploma thesis. I found a few interesting subjects for my...
Bat file basic usage

Bat file basic usage

This could as well be called “the beginner’s guide to .bat”. First of all, it a good idea to download some tool to help us start right away. I personally have found the best solutions to be the Microsoft Visual Studio Code and Notepad ++. Both are...
CUDA Unified Memory Sample

CUDA Unified Memory Sample

Old CUDA programmers (Like me) are used to use the cudaMemcpy() functions to transfer data to and from the GPU. Copying the data over PCI-Express is a necessary operation during each computation. I have written countless of functions and algorithms, that include some...