nvidia

On windows11, nvcc cannot show the correct version of CUDA

On windows11, nvcc cannot show the correct version of CUDA Question: The version I originally installed is 11.6. To match the tensorflow2.11.0, I had to install the v11.2 of CUDA, during which I first uinstall the newer version of CUDA(every thing about it) and then install the earlier version that is 11.2. However, after the …

Total answers: 1

"nvidia/tts_en_fastpitch" not getting installed in python

"nvidia/tts_en_fastpitch" not getting installed in python Question: I am trying to create TTS with Nvidia NeMo tts_en_fastpitch model in python. But can not install fastpitch model. These are the errors: from nemo.collections.tts.models import HifiGanModel from nemo.collections.tts.models import FastPitchModel spec_generator = FastPitchModel.from_pretrained("nvidia/tts_en_fastpitch") model = HifiGanModel.from_pretrained(model_name="nvidia/tts_hifigan") [NeMo W 2023-01-21 18:49:02 optimizers:55] Apex was not found. Using the …

Total answers: 1

How to run PyTorch on GPU with CUDA 10.2 on Windows 7?

How to run PyTorch on GPU with CUDA 10.2 on Windows 7? Question: I want to test run some finite-difference time domain (FDTD) simulations using parallelization on a GPU and compare the speed to CPU-based simulation runs. This is basically my very first attempt at using GPU acceleration for scientific computing. My system configuration: CPU: …

Total answers: 1

Using String parameter for nvidia triton

Using String parameter for nvidia triton Question: I’m trying to deploy a simple model on the Triton Inference Server. It is loaded well but I’m having trouble formatting the input to do a proper inference request. My model has a config.pbtxt set up like this max_batch_size: 1 input: [ { name: "examples" data_type: TYPE_STRING format: …

Total answers: 2

tensorflow: Could not load dynamic library 'cudart64_110.dll'; dlerror: cudart64_110.dll not found

tensorflow: Could not load dynamic library 'cudart64_110.dll'; dlerror: cudart64_110.dll not found Question: So im trying to do some machine learning, and i want to make use of my gpu. Im on tensorflow version 2.6.0(i also tried tensorflow-gpu).I installed CUDA 11.2 and cuDNN 8.1. Added everything to PATH like it says here https://www.tensorflow.org/install/gpu. However i still …

Total answers: 2

How to get tensorflow-gpu v2 working on Windows with NVidia GPU

How to get tensorflow-gpu v2 working on Windows with NVidia GPU Question: What are the steps to get tensorflow-gpu 2.x Python package working on Windows with an NVidia GPU? I.e. how can I get rid of Could not find ‘cudart64_101.dll’ and then Could not find ‘cudnn64_7.dll’? Asked By: Danny Varod || Source Answers: Steps Requires …

Total answers: 1

How to install nvidia apex on Google Colab

How to install nvidia apex on Google Colab Question: what I did is follow the instruction on the official github site !git clone https://github.com/NVIDIA/apex !cd apex !pip install -v –no-cache-dir ./ it gives me the error: ERROR: Directory ‘./’ is not installable. Neither ‘setup.py’ nor ‘pyproject.toml’ found. Exception information: Traceback (most recent call last): File …

Total answers: 8

How to kill process on GPUs with PID in nvidia-smi using keyword?

How to kill process on GPUs with PID in nvidia-smi using keyword? Question: How to kill running processes on GPUs for a specific program (e.g. python) in terminal? For example two processes are running with python in the top picture and kill them to see the bottom picture in nvidia-smi Asked By: salehinejad || Source …

Total answers: 5