Parallel CUDA Installation and Version Management on Linux

When working with machine learning frameworks that depend on specific CUDA releases, maintaining multiple toolkit versions on a single Linux host becomes essential. Rather than removing existing installations, you can deploy additional releases alongside the primary version and toggle between them dynamically. Installing an Additional CUDA Rele ...

Posted on Sat, 16 May 2026 11:23:29 +0000 by mcirl2

Installing TensorFlow 1.x and 2.x with CPU and GPU Support on Windows and Linux

Prerequisites and Overview This guide covers the installation of TensorFlow versions 1.15 and 2.16.1 using the conda package manager. The procedures are consistent across Windows 10 and Ubuntu 22.04 LTS. It is updated as of March 2024. CPU and GPU configurations are detailed. System and Software Requirements 1. Conda Installation Install Anacon ...

Posted on Sat, 16 May 2026 03:14:38 +0000 by Noctule

Establishing a Local Inference Pipeline for Open-Source Large Language Models

Prerequisites and Environment Configuration Before deploying any model, ensure the Python environment is stable. Update package managers and configure mirror sources to improve download stability if network constraints exist. Dependency Installation Update pip first, then install core libraries required for Hugging Face or ModelScope models. Us ...

Posted on Fri, 15 May 2026 19:47:50 +0000 by mr_mind

CUDA C++ Programming Model Fundamentals

KernelsCUDA C++ extends the standard C++ language by allowing the definition of kernels. A kernel is a function that, when called, is executed N times in parallel by N different CUDA threads, as opposed to a regular C++ function which executes only once. Kernels are defined using the __global__ declaration specifier and are invoked using a spec ...

Posted on Sat, 09 May 2026 18:28:05 +0000 by ciber

Setting Up Darknet with YOLO on Ubuntu

GPU Driver Installation Identify your NVIDIA GPU model and download the appropriate driver from NVIDIA's official site. For example, with a GTX 1080 Ti: Remove any exisitng NVIDIA drivers: sudo apt-get remove --purge nvidia\* Disable the open-source nouveau driver by creating a blacklist file: sudo tee /etc/modprobe.d/blacklist-nouveau.conf &l ...

Posted on Fri, 08 May 2026 10:06:42 +0000 by yuws

Troubleshooting Common Issues in Docker GPU Training Environments

Checking Your System Configuration To begin, verify your system's configuration with these commands: Check the kernel version used by your NVIDIA driver: cat /proc/driver/nvidia/version View installed NVIDIA packages: cat /var/log/dpkg.log | grep nvidia List all NVIDIA drivers installed: sudo dpkg --list | grep nvidia-* Problem 1: NVML Initial ...

Posted on Thu, 07 May 2026 08:30:34 +0000 by harsha