Results for cuda
Let's say that there are three variables X, Y and Z with minimum, maximum and variation step values, minX, maxX, minY, maxY, minZ, maxZ (the minimum a...
I am having trouble writing a CMake file to offload SYCL code to the NVIDIA backend. My CMake file currently looks like this cmake_minimum_required(VE...
I'm replicating the point cloud model from https://github.com/ZrrSkywalker/Point-NN/tree/main using Python 3.7. When I run: pip install pointnet2_ops_...
I'm trying to compile a binary (C++) Python package that needs CUDA. Everything works except for finding the CUDA toolkit (CMake can't find nvcc). I h...
I have the following code: try: # faster, but requires more memory G = self.sparse.to_dense().t() @ self.sparse.to_dense() ...
I'm trying to convert a 3x3 rgb "image" to grayscale. The image is just a 3d array. You can think of it being a 2d image, with each pixel having a 1x3...
I have been playing around with oobabooga text-generation-webui on my Ubuntu 20.04 with my NVIDIA GTX 1060 6GB for some weeks without problems. I hav...
I need a very specific structure, The base is an array of Interval objects. I am using the already prepared ones from the CUDA samples. On top of that...
I have a weird problem which only occurs since today on my github workflow. These are relevant commands. pip3 install torch torchvision torchaudio --i...
tf-nightly version = 2.12.0-dev2023203 Python version = 3.10.6 CUDA drivers version = 525.85.12 CUDA version = 12.0 Cudnn version = 8.5.0 I am using ...
I initially asked about an error when trying to compile a code including , but this was solved by adding a flag -std=c++14, as in nvcc -std=c++14 test...
GPU: Quadro RTX 4000 CUDA: 11.7 I have implemented a global lock by atomic operations like: __global__ void floatAddLockExch(float* addr, volatile int...
I'm trying to excute a code, but I keep geting this error when compiling this piece of code: import tensorflow as tf from xba import XBA import ...
I am creating an inference service with torch, gunicorn and flask that should use CUDA. To reduce resource requirements, I use the preload option of g...
I'm using a CUDA version which does not support the GCC version installed on my system (my GCC is too new). I'm trying to build a repository which use...
The CUDA Runtime has a notion of a "current device", while the CUDA Driver does not. Instead, the driver has a stack of context, where the "current co...
I'm trying to start using Cupy for some Cuda Programming. I need to write my own kernels. However, I'm struggling with 2D kernels. It seems that Cupy ...
I have two arrays x (of size N ~1-100 millions) and a (greatly smaller Na ~1000-10000) and I want to use x to define a as for(int j = 0; j float i = ...
I fear this to be marked as duplicate but I find examples with libcudart or libcublas but not libcufft (which is my issue). I installed TensorFlow and...
I'm trying to train my Pytorch model on a remote server using a GPU. However, the training phase doesn't start, and I have the following error instead...
I am trying to initialize a tensor on Google Colab with GPU enabled. device = torch.device('cuda' if torch.cuda.is_available() else 'cpu') t = torch....
I'm trying to learn how to implement OptiX into my C++ project. One of the first steps is to get the current CUDA context with cuCtxGetCurrent(&some_C...
I have just downloaded PyTorch with CUDA via Anaconda and when I type into the Anaconda terminal: import torch if torch.cuda.is_available(): print...
I'm trying to use GPU from inside my docker container. I'm using docker with version 19.03 on Ubuntu 18.04. Outside the docker container if I run nvid...
I am trying to get NVIDIA's CUDA setup and installed on my PC which has an NVIDIA GEFORCE RTX 2080 SUPER graphics card. After hours of trying differen...
How do I undo the most recent local commits in Git?
How can I remove a specific item from an array in JavaScript?
How do I delete a Git branch locally and remotely?
How can I find all files containing a specific text (string) on Linux?
How to find all files containing specific text (string) on Linux?
How do I revert a Git repository to a previous commit?
How do I create an HTML button that acts like a link?
How do I check out a remote Git branch?